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;
