import { RepaymentPeriod as ProgramRepaymentPeriod } from "../idl/idl.types"; import { DistributionWaterfall } from "./DistributionWaterfall"; export type TimeFrame = { start: number; end: number; }; export declare class RepaymentPeriod { private programVersion; waterfallDefinition: DistributionWaterfall; constructor(programVersion: ProgramRepaymentPeriod, waterfallDefinitions: DistributionWaterfall[]); get accrualInDays(): number; get principalExpected(): number | null; get timeFrame(): TimeFrame; get calculationDate(): number; get isCashSweep(): boolean; } //# sourceMappingURL=RepaymentPeriod.d.ts.map