export interface IAppError extends Error {
    statusCode: number;
    status: string;
}
declare class AppError extends Error implements IAppError {
    statusCode: number;
    status: string;
    constructor(message: string, statusCode: number);
}
export default AppError;
