import * as z from "zod/v4"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Audience: { readonly User: "user"; readonly Assistant: "assistant"; }; export type Audience = OpenEnum; export type Annotations = { audience?: Array | null | undefined; priority?: number | null | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const Audience$inboundSchema: z.ZodType; /** @internal */ export declare const Annotations$inboundSchema: z.ZodType; export declare function annotationsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=annotations.d.ts.map