import { Entry } from './types/entry'; import { GroupInfo } from './types/groupInfo'; import { Person } from './types/person'; export type BalanceItem = { balance: string; payedFor: number; payedBy: number; }; export type Balance = Record; /** * might be off of the results of the Splid App by a single digit in some cases (single cent), because we haven't quite figured out their arcane rounding rules yet. */ export declare const getBalance: (people: Pick[], entries: Pick[], groupInfo?: Pick) => Balance;