import { type FactoryProvider, InjectionToken } from '@angular/core'; import { type TuiValueTransformer } from '@taiga-ui/cdk/classes'; import { type TuiMonthRange } from '@taiga-ui/cdk/date-time'; export interface TuiInputMonthRangeOptions { readonly icon: string; readonly valueTransformer: TuiValueTransformer; } export declare const TUI_INPUT_MONTH_RANGE_OPTIONS: InjectionToken; export declare const tuiInputMonthRangeOptionsProvider: (options: Partial) => FactoryProvider;