export interface ConfirmDialogProps { open: boolean; onConfirm: () => void; onCancel: () => void; title: string; message: string; confirmLabel?: string; cancelLabel?: string; destructive?: boolean; } export declare function ConfirmDialog({ open, onConfirm, onCancel, title, message, confirmLabel, cancelLabel, destructive, }: ConfirmDialogProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=confirm-dialog.d.ts.map