import type { Invoice, BankTransaction, Match, MatchingContext } from '@ksefnik/shared'; export declare function createMatchingContext(invoices: Invoice[], transactions: BankTransaction[], alreadyMatched?: Match[]): MatchingContext; export declare function getUnmatchedInvoices(invoices: Invoice[], matched: Match[]): Invoice[]; export declare function getUnmatchedTransactions(transactions: BankTransaction[], matched: Match[]): BankTransaction[]; //# sourceMappingURL=context.d.ts.map