import { CheckCircleFilled, CloseCircleFilled, ExclamationCircleFilled, WarningFilled } from '@ant-design/icons-vue'; import NotFound from './icons/NotFound'; import ServerError from './icons/ServerError'; import UnAuthorized from './icons/UnAuthorized'; export declare const IconMap: { success: typeof CheckCircleFilled; error: typeof CloseCircleFilled; info: typeof ExclamationCircleFilled; warning: typeof WarningFilled; }; export declare const ExceptionMap: { 404: typeof NotFound; 500: typeof ServerError; 403: typeof UnAuthorized; };