export declare class AppError extends Error {
    message: string;
    code: string;
    status: number;
    constructor(message: string, code?: string, status?: number);
}
export declare class ValidationError extends AppError {
    constructor(message: string);
}
export declare class NotFoundError extends AppError {
    constructor(message: string);
}
