import type { TaxBasis } from '.'; import type { Assets } from './Assets'; import type { ForecastOptions } from './ForecastOptions'; import type { ForecastType } from './ForecastType'; import type { ForecastValues } from './ForecastValues'; import type { User } from './User'; export declare type Config = { accessToken: string; ageAsInteger?: boolean; currency?: string; apiUrl: string; user?: User; assets?: Assets; forecastValues?: ForecastValues; tax?: TaxBasis; forecastOptions?: ForecastOptions; messages?: Record; forecastType?: ForecastType; showInputScreens?: boolean; incomeQuestions?: boolean; charge?: number; backgroundColour1?: string; backgroundColour2?: string; };