import { ReactNode } from 'react'; export interface EntityConfirmDialogProps { open: boolean; onOpenChange: (open: boolean) => void; onConfirm: () => void; loading?: boolean; entityType: string; entityName: string; title?: string; /** Overrides the default `name (type) …` body. */ description?: ReactNode; confirmText?: string; cancelText?: string; destructive?: boolean; } export declare function EntityConfirmDialog({ open, onOpenChange, onConfirm, loading, entityType, entityName, title, description, confirmText, cancelText, destructive, }: EntityConfirmDialogProps): import("react").JSX.Element; //# sourceMappingURL=EntityConfirmDialog.d.ts.map