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