import { type ModalDialogProps, type WidthNames } from '../types';
interface Width {
    values: string[];
    widths: {
        [index in WidthNames]: number;
    };
    defaultValue: string;
}
export declare const width: Width;
export declare const dialogWidth: (input?: ModalDialogProps['width']) => string;
export declare const dialogHeight: (input?: ModalDialogProps['height']) => string;
export {};
