import { ModalInfo } from "../types/modal";
import { ModalReducerAction } from "./reducer";
export declare const emitChangeListener: () => void;
export declare const dispatchModal: (action: ModalReducerAction) => void;
export declare const registerModalStore: {
    subscribe(listener: () => void): () => void;
    getSnapshot(): ModalInfo<unknown>[];
};
