import { TFixErrorCodes } from '../../../../shared/types/core/sdk-events';
import { TCustomError } from '../../../../shared/types/services/TCustomError';
type TStandaloneErrorProps = {
    handleClearError: () => void;
    eventDetails?: TFixErrorCodes;
    title?: string;
    description?: string;
    logo?: TCustomError['logo'];
    btnText?: string;
    hideBtn?: boolean;
};
declare const StandaloneError: ({ handleClearError, eventDetails, title, description, logo, btnText, hideBtn }: TStandaloneErrorProps) => import("react/jsx-runtime").JSX.Element;
export default StandaloneError;
