1 export interface Modal {
3 content: JSX.Element | undefined;
7 export interface ModalManager {
8 createModal: (content?: JSX.Element, id?: string) => string;
9 hideModal: (id: string) => void;
10 removeModal: (id: string) => void;
11 getModal: (id: string) => Modal | undefined;