import { DialogProps } from '../Dialog'; import { DrawerProps } from '../Drawer'; type DrawerDialogWithoutChildren = Omit; export type ConfirmDialogProps = DrawerDialogWithoutChildren & { isOpen?: boolean; title?: string; message?: string; onConfirm: () => void; onCancel?: () => void; cancelText?: string; confirmText?: string; hold?: boolean; dialogProps?: DialogProps; drawerProps?: DrawerProps; }; export declare const ConfirmDialog: ({ title, message, onConfirm, onCancel, cancelText, confirmText, hold, ...rest }: ConfirmDialogProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ConfirmDialog.d.ts.map