import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MediaItem = { url: string; type: string; filename: string; isPublic?: boolean | null | undefined; subfolder?: string | null | undefined; uploadDuration?: number | null | undefined; }; /** @internal */ export declare const MediaItem$inboundSchema: z.ZodType; /** @internal */ export type MediaItem$Outbound = { url: string; type: string; filename: string; is_public?: boolean | null | undefined; subfolder?: string | null | undefined; upload_duration?: number | null | undefined; }; /** @internal */ export declare const MediaItem$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace MediaItem$ { /** @deprecated use `MediaItem$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MediaItem$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MediaItem$Outbound` instead. */ type Outbound = MediaItem$Outbound; } export declare function mediaItemToJSON(mediaItem: MediaItem): string; export declare function mediaItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mediaitem.d.ts.map