import { z } from "zod"; export declare const rtzrAuthResponseSchema: z.ZodObject<{ access_token: z.ZodString; expire_at: z.ZodNumber; }, z.core.$strip>; export declare const rtzrTranscriptionResponseSchema: import("@ai-sdk/provider-utils").LazySchema<{ id: string; }>; export declare const rtzrTranscriptionResultResponseSchema: import("@ai-sdk/provider-utils").LazySchema<{ id: string; status: "failed" | "transcribing" | "completed"; results?: { utterances: { start_at: number; duration: number; msg: string; spk: number; lang?: string | undefined; }[]; } | null | undefined; }>; //# sourceMappingURL=api.d.ts.map