export declare const ModalSizes: { readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; readonly XL: "xl"; readonly DEFAULT: "default"; }; export type ModalSizes = (typeof ModalSizes)[keyof typeof ModalSizes]; export declare const ModalPositions: { readonly TOP_LEFT: "top-left"; readonly TOP_CENTER: "top-center"; readonly TOP_RIGHT: "top-right"; readonly MIDDLE_LEFT: "middle-left"; readonly MIDDLE_CENTER: "middle-center"; readonly MIDDLE_RIGHT: "middle-right"; readonly BOTTOM_LEFT: "bottom-left"; readonly BOTTOM_CENTER: "bottom-center"; readonly BOTTOM_RIGHT: "bottom-right"; }; export type ModalPositions = (typeof ModalPositions)[keyof typeof ModalPositions];