import { Fetch } from '../utils'; import { GlobalErrorHandler } from '..'; export declare class FinstrongApi { fetchInstance: Fetch; constructor(endpoint: string, token: string, onError?: GlobalErrorHandler); calculateHealthScore: () => Promise; getAverageHealthScores: () => Promise; getDebtSpend: () => Promise; getIncome: () => Promise; getMonthlySummaries: () => Promise; getHealthScoreChangeReports: (startDate: number, endDate: number) => Promise; getPeerScore: (birthYear: string) => Promise; getSpendingFeeTransactions: () => Promise; getStandardSpend: () => Promise; }