export declare type TBudgetValue = { value: number; summary?: string; description?: string; selected?: boolean; }; export declare type TBudget = { id: number; name: string; } & TBudgetLevelValues & TBudgetOther; export declare type TBudgetLevels = 'minimum' | 'moderate' | 'comfortable'; export declare type TBudgetLevelValues = { [keys in TBudgetLevels]: TBudgetValue; }; declare type TBudgetOther = { other?: TBudgetValue; }; export declare type TBudgetOptions = { demographic: string; marriageStatus: string; budgets: TBudgets; }; export declare type TBudgets = Array; export declare type TPlsaData = { budgets: Array; }; export {};