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