import { z } from 'zod'; /** * Invoice Query Schema * Validation for pagination parameters when listing invoices */ export declare const invoiceQuerySchema: z.ZodObject<{ limit: z.ZodDefault>; offset: z.ZodDefault>; }, z.core.$strip>; /** * Invoice Response Schema * Validation for invoice data structure in API responses */ export declare const invoiceResponseSchema: z.ZodObject<{ id: z.ZodString; teamId: z.ZodString; invoiceNumber: z.ZodString; date: z.ZodString; amount: z.ZodNumber; currency: z.ZodString; status: z.ZodEnum<{ pending: "pending"; paid: "paid"; failed: "failed"; refunded: "refunded"; }>; pdfUrl: z.ZodNullable; description: z.ZodOptional>; createdAt: z.ZodString; updatedAt: z.ZodString; }, z.core.$strip>; /** * Type inference for Invoice Response */ export type InvoiceResponse = z.infer; /** * Type inference for Invoice Query */ export type InvoiceQuery = z.infer; //# sourceMappingURL=invoices.d.ts.map