/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ import * as zod from "zod"; /** * Upload an image file to cloud storage. Supports PNG, JPG, WEBP, and GIF formats. Maximum file size: 5MB. Images are automatically optimized and stored in entity-specific folders. Returns secure URLs for use in entity settings, invoices, and other documents. * @summary Upload image */ export declare const UploadImageHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const UploadImageBody: zod.ZodObject<{ file: zod.ZodCustom; }, zod.z.core.$strip>; export declare const UploadImageResponse: zod.ZodObject<{ url: zod.ZodURL; secureUrl: zod.ZodURL; publicId: zod.ZodString; format: zod.ZodString; width: zod.ZodNumber; height: zod.ZodNumber; bytes: zod.ZodNumber; entity_id: zod.ZodString; }, zod.z.core.$strip>; //# sourceMappingURL=upload.d.ts.map