import * as z from "zod/v4-mini"; export type IdDisplayNameFamily = { /** * Model identifier */ id: string; /** * Human-readable name */ displayName?: string | undefined; /** * Adapter family (openai|anthropic|inference) */ family?: string | undefined; /** * Role list: exec, eval, opt */ roles?: Array | undefined; /** * 'discovered' | 'manual' */ source?: string | undefined; }; /** @internal */ export type IdDisplayNameFamily$Outbound = { id: string; displayName?: string | undefined; family?: string | undefined; roles?: Array | undefined; source?: string | undefined; }; /** @internal */ export declare const IdDisplayNameFamily$outboundSchema: z.ZodMiniType; export declare function idDisplayNameFamilyToJSON(idDisplayNameFamily: IdDisplayNameFamily): string; //# sourceMappingURL=id-display-name-family.d.ts.map