import { type FactoryProvider, InjectionToken } from '@angular/core';
import { type TuiValueTransformer } from '@taiga-ui/cdk/classes';
import { type TuiMonth } from '@taiga-ui/cdk/date-time';
export interface TuiInputMonthOptions {
    readonly icon: string;
    readonly valueTransformer: TuiValueTransformer<TuiMonth | null, any>;
}
export declare const TUI_INPUT_MONTH_OPTIONS: InjectionToken<TuiInputMonthOptions>;
export declare const tuiInputMonthOptionsProvider: (options: Partial<TuiInputMonthOptions>) => FactoryProvider;
