import type { Ksefnik } from '@ksefnik/core'; import { z } from 'zod'; export declare const importBankSchema: z.ZodObject<{ content: z.ZodString; }, "strip", z.ZodTypeAny, { content: string; }, { content: string; }>; export type ImportBankInput = z.infer; export declare function importBank(ksef: Ksefnik, input: ImportBankInput): Promise<{ transactions: { description: string; id: string; date: string; createdAt: string; amount: number; bank: "mt940" | "mbank" | "ing" | "pko" | "santander" | "other"; raw: string; senderName?: string | undefined; senderNIP?: string | undefined; recipientName?: string | undefined; recipientNIP?: string | undefined; }[]; count: number; }>; //# sourceMappingURL=import-bank.d.ts.map