import { ReactElement } from "react"; type AlertProps = { isAlertDisplayed: boolean; onCompleteCallBack(): void; onCancelCallBack(forceQuite: boolean): void; labels: { boldContent?: string; content: string; cancel: string | undefined; complete: string; }; icon: ReactElement; }; declare const Alert: import("react").MemoExoticComponent<(props: AlertProps) => JSX.Element>; export default Alert;