import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { IcdExcludesViolation } from "./IcdExcludesViolation.js"; import { IcdExcludesWarning } from "./IcdExcludesWarning.js"; export declare const ValidateIcdCodesResponse: core.serialization.ObjectSchema; export declare namespace ValidateIcdCodesResponse { interface Raw { valid: boolean; errors: string[]; violations: IcdExcludesViolation.Raw[]; warnings: IcdExcludesWarning.Raw[]; } }