export declare class ErrorBuilder extends Error { statusCode: number; constructor(nameError: string, message: string, statuCode?: number); static error(nameError: string, message: string, statuCode?: number): Error; static notFound(message: string): Error; static validator(message: string): Error; static accessDenied(message?: string): Error; }