import React from 'react'; export interface ExceptionProps { type?: '403' | '404' | '500'; title?: string; desc?: string; dom?: React.ReactNode; className?: string; style: object; locale?: { '403'?: string; '404'?: string; '500'?: string; }; } export declare const ExceptionDescMap: Record, keyof NonNullable | undefined>; export declare function Exception({ type, style, title, desc, dom, className, }: ExceptionProps): JSX.Element; //# sourceMappingURL=exception.d.ts.map