import type { Ksefnik } from '@ksefnik/core'; import { z } from 'zod'; export declare const sendInvoiceSchema: z.ZodObject<{ xml: z.ZodString; nip: z.ZodString; }, "strip", z.ZodTypeAny, { nip: string; xml: string; }, { nip: string; xml: string; }>; export type SendInvoiceInput = z.infer; export declare function sendInvoiceTool(ksef: Ksefnik, input: SendInvoiceInput): Promise; //# sourceMappingURL=send-invoice.d.ts.map