/// import { Connection, PublicKey } from "@solana/web3.js"; import { Deal } from "../accounts/Deal"; import { RepaymentSchedule } from "../accounts/RepaymentSchedule"; import { CredixProgram } from "../idl/idl.types"; export declare class RepaymentScheduleLoader { private program; private connection; constructor(program: CredixProgram, connection: Connection); fetch(address: PublicKey): Promise; fetchForDeals(deals: Deal[]): Promise<(RepaymentSchedule | null)[]>; } //# sourceMappingURL=RepaymentScheduleLoader.d.ts.map