import { Debt } from '../types'; import { DebtChartData } from '../utils/DebtUtils'; import { DebtPriority } from '../constants/Debts'; import { GlobalStore } from './GlobalStore'; export declare class DebtsStore { globalStore: GlobalStore; uiStore: UiStore; constructor(globalStore: GlobalStore); get debts(): Debt[]; get totalMonthlyPayments(): number; } export declare class UiStore { isLoading: boolean; selectedDebtChartData: DebtChartData; selectedDebtPriority: DebtPriority; constructor(); get showError(): boolean; get showCompleted(): boolean; setIsLoading: (isLoading: boolean) => boolean; setSelectedDebtChartData: (data: DebtChartData) => DebtChartData; setSelectedDebtPriority: (priority: DebtPriority) => DebtPriority; }