import * as z from "zod"; /** * Width - integer pixels or string variable reference (e.g., "$w") */ export type Width = number | string; export declare const Width$zodSchema: z.ZodType; /** * Height - integer pixels or string variable reference (e.g., "$h") */ export type Height = number | string; export declare const Height$zodSchema: z.ZodType; export type Info = { width?: number | string | undefined; height?: number | string | undefined; crop?: string | undefined; gravity?: string | undefined; }; export declare const Info$zodSchema: z.ZodType; export type Derived = { public_id?: string | undefined; resource_type?: string | undefined; type?: string | undefined; format?: string | undefined; url?: string | undefined; secure_url?: string | undefined; bytes?: number | undefined; id?: string | undefined; }; export declare const Derived$zodSchema: z.ZodType; export type TransformationInfo = { name?: string | undefined; allowed_for_strict?: boolean | undefined; used?: boolean | undefined; named?: boolean | undefined; info?: Array | undefined; derived?: Array | undefined; next_cursor?: string | undefined; }; export declare const TransformationInfo$zodSchema: z.ZodType; //# sourceMappingURL=transformationinfo.d.ts.map