import { ModalInfo } from "../types/modal";
export declare const modal: {
    openAsync: <V>(Component: ModalInfo["Component"], props?: ModalInfo["props"]) => Promise<V>;
    open: (Component: ModalInfo["Component"], props?: ModalInfo["props"]) => void;
    close: () => void;
    clear: () => void;
};
