export declare class Errors { /** * Runtime error which logs the error out * @param error The error message * @param logger The logger instance * @param objects The objects to log for further details */ static runtimeErrorAndLog(error: string, ...objects: any[]): Error; /** * Runtime error * @param error The error */ static runtimeError(error: string): Error; }