use Jaxon\App\Dialog\Library\AlertInterface;
use Jaxon\App\Dialog\Library\ConfirmInterface;
use Jaxon\App\Dialog\Library\ModalInterface;
interface LibraryRegistryInterface { /**
* Get the AlertInterface library
*
* @return AlertInterface
*/ public function getAlertLibrary(): AlertInterface;
/**
* Get the ConfirmInterface library
*
* @return ConfirmInterface
*/ public function getConfirmLibrary(): ConfirmInterface;
/**
* Get the ModalInterface library
*
* @return ModalInterface|null
*/ public function getModalLibrary(): ?ModalInterface;
}