export declare class GenericErrorCodes { static BASIC_ERROR: string; } export declare class ErrorWithCode { code: string; message: string; error: Error; static buildSimpleError(code: string, message: string, error?: Error): ErrorWithCode; }