/** New size type following design system naming conventions */ export type Size = "small" | "medium" | "large" | "fullscreen"; /** @deprecated Use Size instead */ export type DialogSizes = "extra-small" | "small" | "medium-small" | "medium" | "medium-large" | "large" | "extra-large" | "auto"; type PaddingValues = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8; export interface ContentPaddingInterface { p?: PaddingValues; py?: PaddingValues; px?: PaddingValues; } /** Minimum width for all dialog sizes */ export declare const DIALOG_MIN_WIDTH = "288px"; /** * Size values matching Carbon's defined max-width values. * All dialogs have a min-width of 288px. */ export declare const DIALOG_SIZE_CONFIG: { readonly small: { readonly maxWidth: "540px"; readonly minWidth: "288px"; }; readonly medium: { readonly maxWidth: "850px"; readonly minWidth: "288px"; }; readonly large: { readonly maxWidth: "1080px"; readonly minWidth: "288px"; }; readonly fullscreen: { readonly maxWidth: "100%"; readonly minWidth: "100%"; }; }; /** Default size is medium unless specified */ export declare const DEFAULT_SIZE: Size; export {};