import { InputLogLevel } from '#logger/logger.js'; import { Status } from '#utils/http-status-codes.js'; export declare class ErrorOpts { /** * Message to send it to a client. */ msg1?: string; /** * A message to send it to a logger. */ msg2?: string; /** * Arguments for error handler to send it to a client. */ args1?: any; /** * Arguments for error handler to send it to a logger. */ args2?: any; /** * Log level. By default - `warn`. */ level?: InputLogLevel; /** * HTTP status. */ status?: Status; /** * The parameters that came with the HTTP request. */ params?: any; constructor(info?: ErrorOpts); } //# sourceMappingURL=error-opts.d.ts.map