import { FoxpageStatus } from './enum'; import { IFoxpageErrorType } from './interface'; export type NotFoundDSLErrorDetail = { pageId?: string; }; export declare const NotFoundDSLErrorCode = "NOT_FOUND_DSL_EXCEPTION"; export declare class NotFoundDSLError extends Error implements IFoxpageErrorType { code: string; detail: NotFoundDSLErrorDetail; status: FoxpageStatus; constructor(pageId: string, msg: string); }