import type { Ksefnik } from '@ksefnik/core'; import { z } from 'zod'; export declare const validateInvoiceSchema: z.ZodObject<{ invoice: z.ZodRecord; }, "strip", z.ZodTypeAny, { invoice: Record; }, { invoice: Record; }>; export type ValidateInvoiceInput = z.infer; export declare function validateInvoiceTool(ksef: Ksefnik, input: ValidateInvoiceInput): { valid: boolean; errors: import("@ksefnik/core").ValidationResult[]; }; //# sourceMappingURL=validate-invoice.d.ts.map