import { SavingsAccountListType } from '../utils';
type PlanCardProps = {
    progress: number;
    backgroundColor: string;
    data: SavingsAccountListType;
    onPress: () => void;
    isLockedSavings?: boolean;
    startDate?: string;
    endDate?: string;
};
declare const PlanCard: (props: PlanCardProps) => import("react/jsx-runtime").JSX.Element;
export default PlanCard;
