export declare type PfExceptionStatusType = 403 | 404 | 500 | '403' | '404' | '500' | 'unauthorized' | 'empty' | 'noResult' | 'noNetwork'; export declare const PfExceptionMap: { '404': () => JSX.Element; '500': () => JSX.Element; '403': () => JSX.Element; empty: () => JSX.Element; noResult: () => JSX.Element; noNetwork: () => JSX.Element; }; declare const RenderPfResult: (prefixCls: string, { status, title, subTitle, extra }: { status: any; title: any; subTitle: any; extra: any; }) => JSX.Element; export default RenderPfResult;