import React from 'react'; export interface IDialogProps { id?: string; title: string; isOpen: boolean; children?: React.ReactNode; actions: JSX.Element[]; onClose?: () => void; variant?: 'small' | 'large'; } export declare function Dialog({ id, title, onClose, isOpen, children, actions, variant }: IDialogProps): React.JSX.Element; //# sourceMappingURL=Dialog.d.ts.map