import type { Assets, ForecastOptions, User } from '../../../common/types'; import type { ApiErrors } from '../../../common/types/ApiErrors'; import type { TConfig } from '../../types'; export declare type AnnualIncomeScreenParams = { config: TConfig; user: User; assets: Assets; forecastOptions: ForecastOptions; handleError: (errors: ApiErrors) => void; forecastType: 'Annuity' | 'Drawdown'; otherIncomeValue: string; }; export declare const AnnualIncomeScreen: ({ config, user, assets, forecastOptions, handleError, forecastType, otherIncomeValue, }: AnnualIncomeScreenParams) => import("@emotion/react/jsx-runtime").JSX.Element;