/// import './ErrorModal.scss'; export interface IErrorModal { title: string; children: JSX.Element | JSX.Element[] | string; show: boolean; onOKClick?: () => void; customClass?: string; disablePortal?: boolean; isOkButtonEnabled?: boolean; OKButtonText?: string; showErrorIcon?: boolean; } export declare const ErrorModal: ({ title, children, show, onOKClick, customClass, isOkButtonEnabled, OKButtonText, disablePortal, showErrorIcon }: IErrorModal) => JSX.Element;