///
import { BaseProps } from "../../Factory/BaseType";
export type ConfirmationAlertProps = BaseProps & {
value: any;
title: string;
messageHeader?: string;
messageBody?: string;
iconUrl?: string;
iconName?: string;
confirmText?: string;
cancelText?: string;
onConfirm?: () => void;
onCancel?: () => void;
onModelUpdate?: (callBack: ((args: any) => void) | null, fieldName: string, value: any) => void;
handleHeader?: (callback: (header: string) => void, header: string, viewModel?: Record) => void;
handleBody?: (callback: (body: string) => void, body: string, value?: any) => void;
};
declare const ConfirmationAlert: (props: ConfirmationAlertProps) => import("react").JSX.Element;
export default ConfirmationAlert;