export interface IModalController {
    isOpen: boolean;
    open: () => void;
    close: () => void;
}
