import { FoxpageStatus } from './enum'; import { IFoxpageErrorType } from './interface'; export type NotFoundAppErrorDetail = { appId?: string; }; export declare const NotFoundAppCode = "NOT_FOUND_APP_EXCEPTION"; export declare class NotFoundAppError extends Error implements IFoxpageErrorType { code: string; detail: NotFoundAppErrorDetail; status: FoxpageStatus; constructor(appId?: string); }