import * as z from "zod"; export type VideoView = { video_public_id?: string | undefined; video_duration?: number | null | undefined; video_transformation?: string | null | undefined; video_extension?: string | null | undefined; viewer_application_name?: string | null | undefined; viewer_location_country_code?: string | null | undefined; viewer_os_identifier?: string | null | undefined; view_watch_time?: number | null | undefined; view_ended_at?: string | undefined; }; export declare const VideoView$zodSchema: z.ZodType; //# sourceMappingURL=videoview.d.ts.map