import { ReactElement } from 'react';
export interface ConfirmationAlertProps {
    triggerChild: ReactElement;
    title: string;
    body: string;
    onConfirm: () => void;
}
export declare const ConfirmationAlert: React.FC<ConfirmationAlertProps>;
