import { Transaction } from "../../../Transaction"; import { rows } from "../rows"; import { Cards } from "./Cards"; import { Iin } from "./Iin"; export type NonMonthly = { "Payments Transactions Declined for Insufficient Funds - Number": Partial>; } & Cards; export declare namespace NonMonthly { function empty(): NonMonthly; function update(previous: NonMonthly, transaction: Transaction.CardTransaction): NonMonthly; function toCsvRow(data: NonMonthly, row: rows.NonZero): string; function merge(previous: NonMonthly, addition: NonMonthly): NonMonthly; }