import { InjectionToken, type Provider } from '@angular/core'; import { type TuiPaymentSystem } from '@taiga-ui/addon-commerce/types'; import { type TuiHandler } from '@taiga-ui/cdk/types'; export interface TuiInputCardOptions { /** @deprecated apparently "off" doesn't disable autocomplete */ readonly autocomplete: boolean; readonly icon: string | null; readonly paymentSystemHandler: TuiHandler; } export declare const TUI_INPUT_CARD_DEFAULT_OPTIONS: TuiInputCardOptions; export declare const TUI_INPUT_CARD_OPTIONS: InjectionToken; export declare function tuiInputCardOptionsProvider(options: Partial): Provider;