import { Goal, GoalsCopy, MetaType, TrackType } from '../index'; export interface GoalStatusData { backgroundColor: string; color: string; percentage: number; percentageText: string; projectedText: string; } export type GoalType = { bgcolor: string; icon: string; label: string; description: string; subTypes: { icon: string; label: string; metaType: MetaType; }[]; type: TrackType; }; export declare function getGoalStatusData(copy: GoalsCopy, goal: Goal): GoalStatusData; export declare function getGoalTypes(copy: GoalsCopy): GoalType[]; export declare const getZeroStateOngoing: (trackType: TrackType, copy: GoalsCopy) => string; export declare const getProjectedRetirementDate: (retirementAge: number, userBirthday: number) => number;