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 ListImagesGlobals = { cloud_name?: string | undefined; }; export declare const ListImagesGlobals$zodSchema: z.ZodType; export type ListImagesRequest = { 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 ListImagesRequest$zodSchema: z.ZodType; export type ListImagesResponse = ApiError | ListResponse; export declare const ListImagesResponse$zodSchema: z.ZodType; //# sourceMappingURL=listimagesop.d.ts.map