import type { Code } from './code.js'; import type { Severity } from './severity.js'; import type Err from './err.js'; declare const withSeverity: (severity: Severity) => (code: Code, message: string) => Err; export default withSeverity;