import { IDialogBoundsDef, IDialogIdentificationType } from "../types/index.js"; export declare const dialogRegister: (dialogId: IDialogIdentificationType, initialBounds: IDialogBoundsDef) => IDialogBoundsDef; export declare const getDialogBounds: (dialogId: IDialogIdentificationType) => IDialogBoundsDef | undefined; export declare const setDialogBounds: (dialogId: IDialogIdentificationType, bounds: IDialogBoundsDef, dialogRef: React.RefObject) => void; export declare const setDialogBound: (dialogId: IDialogIdentificationType, key: keyof IDialogBoundsDef, value: any) => void;