export declare function identifyInterestTransactionIds<T>(transactions: readonly T[], opts: {
    getId: (row: T) => string;
    getChargeId: (row: T) => string | null | undefined;
    getAmount: (row: T) => number;
}): Set<string>;
