import * as z from "zod"; import { ApiError } from "./apierror.js"; import { DeliveryTypeAll } from "./deliverytypeall.js"; import { DirectionEnum } from "./directionenum.js"; import { Fields } from "./fields.js"; import { ListResponse } from "./listresponse.js"; export type ListVideosGlobals = { cloud_name?: string | undefined; }; export declare const ListVideosGlobals$zodSchema: z.ZodType; export type ListVideosRequest = { type?: DeliveryTypeAll | undefined; prefix?: string | undefined; public_ids?: Array | undefined; tags?: boolean | undefined; next_cursor?: string | undefined; max_results?: number | undefined; direction?: DirectionEnum | undefined; start_at?: string | undefined; fields?: Fields | undefined; }; export declare const ListVideosRequest$zodSchema: z.ZodType; export type ListVideosResponse = ApiError | ListResponse; export declare const ListVideosResponse$zodSchema: z.ZodType; //# sourceMappingURL=listvideosop.d.ts.map