omnipay-savings-sdk
Version:
Omnipay Savings SDK
15 lines (14 loc) • 658 B
TypeScript
import { FrequencyType } from '../../utils';
type Props = {
currentRate: number;
savingsTarget: number;
periodicSavingsAmount: number;
selectedFrequency: FrequencyType;
startDate: Date | null;
endDate: Date | null;
isInterestDisabled?: boolean;
onSectionLayout?: (event: any) => void;
onAutoCalculate?: (calculatedAmount: number) => void;
};
declare const FlexibleInterestDisplay: ({ currentRate, savingsTarget, periodicSavingsAmount, selectedFrequency, startDate, endDate, isInterestDisabled, onSectionLayout, onAutoCalculate, }: Props) => import("react/jsx-runtime").JSX.Element;
export default FlexibleInterestDisplay;