import React from "react";
interface CalculatorTheme {
    primary: string;
    secondary: string;
    accent: string;
    background: string;
    textPrimary: string;
    textSecondary: string;
}
interface StepUpSIPCalculatorProps {
    theme?: Partial<CalculatorTheme>;
}
export declare const StepUpSIPCalculator: React.FC<StepUpSIPCalculatorProps>;
export {};
