import type { ComponentChildren, FunctionComponent } from 'preact'; export interface DialogProps { title: string; id: string; style?: 'default' | 'error'; draggable?: boolean; onClose?: () => void; commands?: ComponentChildren; children: ComponentChildren; } /** * Dialog component which takes title and commands as props and content as children. * * If multiple children are provided, they'll be styled with a flex column layout with gaps. * To prevent this behavior, wrap the children in a single div. */ export declare const Dialog: FunctionComponent; //# sourceMappingURL=Dialog.d.ts.map