import type { FC, ReactNode } from 'react'; export interface DialogProps { isOpen: boolean; header: string; body?: ReactNode; confirmText?: string; cancelText?: string; onClose: () => Promise | void; onConfirm: () => Promise | void; } export declare const Dialog: FC;