import React, { HTMLAttributes } from 'react';
export declare type ErrorPresets = 'unauthorized' | 'notFound' | 'serverError' | 'runtimeError' | 'accessDenied' | 'default';
declare type Preset = {
title?: any;
message?: string;
action?: any;
};
export declare const AppError: React.FC>;
export {};