import { FoxpageStatus } from './enum';
import { IFoxpageErrorType } from './interface';
export type NotFoundAppByPathErrorDetail = {
    path?: string;
};
export declare class NotFoundAppByPathError extends Error implements IFoxpageErrorType {
    code: string;
    detail: NotFoundAppByPathErrorDetail;
    status: FoxpageStatus;
    constructor(path?: string);
}
