import { BaseProps } from "../../Factory/BaseType"; type ConfirmationAlertViewProps = BaseProps & { messageHeader?: string; messageBody?: string; iconUrl?: string; iconName?: string; confirmText?: string; cancelText?: string; onConfirm: () => void; onCancel: () => void; }; declare const ConfirmationAlertView: (props: ConfirmationAlertViewProps) => import("react/jsx-runtime").JSX.Element; export default ConfirmationAlertView;