import { Diagnostic, DiagnosticTarget, Program, Type } from "@typespec/compiler"; import type { HttpStatusCodes } from "./types.js"; export declare function validateStatusCode(code: number | string, diagnosticTarget: DiagnosticTarget): [HttpStatusCodes, readonly Diagnostic[]]; export declare function getStatusCodesFromType(program: Program, type: Type, diagnosticTarget: DiagnosticTarget): [HttpStatusCodes, readonly Diagnostic[]]; //# sourceMappingURL=status-codes.d.ts.map