import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetMediaExtendedAudioDescriptionsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetMediaExtendedAudioDescriptionsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediaExtendedAudioDescriptionsInternalServerErrorData; constructor(err: GetMediaExtendedAudioDescriptionsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetMediaExtendedAudioDescriptionsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetMediaExtendedAudioDescriptionsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediaExtendedAudioDescriptionsUnauthorizedErrorData; constructor(err: GetMediaExtendedAudioDescriptionsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetMediaExtendedAudioDescriptionsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetMediaExtendedAudioDescriptionsUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=getmediaextendedaudiodescriptions.d.ts.map