import { ReactNode } from 'react'; export declare const DEFAULT_CLASS = "hods-form-confirmation"; export declare const DEFAULT_MESSAGE = "Are you sure?"; export declare const DEFAULT_CONFIRM_LABEL = "Confirm"; interface ConfirmationProps { id: string; message?: string; confirmLabel?: string; children?: ReactNode; onConfirm: Function; onCancel: Function; classModifiers?: string | string[]; } declare const Confirmation: ({ id, message, confirmLabel, children, onConfirm, onCancel, classModifiers }: ConfirmationProps) => import("react/jsx-runtime").JSX.Element; export default Confirmation;