import React from 'react'; declare type SizeProp = 'xxl' | 'xl' | 'l' | 'm' | 's' | 'xs' | 'xxs' | string | number; declare type Size = { min?: SizeProp; max?: SizeProp; set?: SizeProp; }; declare type ScrollProp = 'hidden' | 'x' | 'y' | 'auto'; interface DialogProps { className?: string; unclosable?: boolean; open: boolean; caption: string; width?: Size; height?: Size; padding?: string | number; scroll?: ScrollProp; actions?: JSX.Element; onClose?: () => void; children?: React.ReactNode | React.ReactNode[] | any; } export declare const Dialog: React.FC; export {}; //# sourceMappingURL=index.d.ts.map