import type { DialogExpose } from "../dialog";
export declare const GlobalDialog: {
    toggle(id: string, val?: boolean): boolean;
    store: Map<any, any>;
    register<D extends string>(name: D, api: DialogExpose, opts?: import("@cn-ui/reactive").BlackBoardOption): Map<any, any> | undefined;
    getApp<D extends string>(name: D): DialogExpose;
    deleteFn: (name: string) => void;
    check(name: string): boolean;
    destroy(): void;
};
