import * as react_jsx_runtime from 'react/jsx-runtime'; interface SavingsGoalModalProps { open: boolean; onOpenChange: (open: boolean) => void; /** Current monthly savings trend (pre-calculated) in dollars */ currentMonthlyTrend?: number; /** Initial goal amount in dollars */ defaultGoalAmount?: number; /** Called when user confirms the goal */ onSave?: (goalAmount: number, periodDays: number) => void; className?: string; } declare function SavingsGoalModal({ open, onOpenChange, currentMonthlyTrend, defaultGoalAmount, onSave, className, }: SavingsGoalModalProps): react_jsx_runtime.JSX.Element; export { SavingsGoalModal, type SavingsGoalModalProps };