/** Voice returned by GET /api/voices */ export interface ApiVoice { voiceId: string; voiceName: string; provider: string; providerId: string; previewUrl: string; tier: "free" | "premium"; } /** Response from GET /api/subscription/status */ export interface SubscriptionStatus { plan: "free" | "pro"; status: "active" | "trialing" | "canceled" | "past_due"; } //# sourceMappingURL=api-types.d.ts.map