import { ModalType } from '../lib'; export declare const getUseModal: (modalComponents: any) => (name: string, initalProps?: any) => { isOpen: boolean; modals: ModalType[]; createModal: (newProps?: any, unshift?: boolean | undefined) => void; deleteModal: () => void; clearModal: () => void; };