/// import { VariantType } from '../buttons/button/types'; export declare type ActionType = { disabled?: boolean; label: string; action: () => void; variant?: VariantType; }; export interface DialogProps { actions?: ActionType[] | ((o?: () => void) => ActionType[]); className?: string; children: React.ReactNode; onClose?: () => void; open?: boolean; size?: 'xl' | 'lg' | 'md' | 'sm'; title?: string; }