type ModalConfig = {
    onShow: (modalContent: Element | null) => void;
    onClose: () => void;
};
export declare function initModal({ onShow, onClose }: ModalConfig): void;
export declare function closeModal(): void;
export {};
