import * as z from "zod"; import { ApiError } from "./apierror.js"; import { TransformationListResponse } from "./transformationlistresponse.js"; export type ListTransformationsGlobals = { cloud_name?: string | undefined; }; export declare const ListTransformationsGlobals$zodSchema: z.ZodType; export type ListTransformationsRequest = { named?: boolean | undefined; max_results?: number | undefined; next_cursor?: string | undefined; }; export declare const ListTransformationsRequest$zodSchema: z.ZodType; export type ListTransformationsResponse = ApiError | TransformationListResponse; export declare const ListTransformationsResponse$zodSchema: z.ZodType; //# sourceMappingURL=listtransformationsop.d.ts.map