import { InjectionToken, type Provider } from '@angular/core'; import { type TuiCurrencyVariants } from '@taiga-ui/addon-commerce/types'; import { type TuiHorizontalDirection } from '@taiga-ui/core/types'; import { type TuiAmountSign } from './amount.types'; export interface TuiAmountOptions { readonly currency: TuiCurrencyVariants; readonly currencyAlign: TuiHorizontalDirection; readonly sign: TuiAmountSign; } export declare const TUI_AMOUNT_DEFAULT_OPTIONS: TuiAmountOptions; export declare const TUI_AMOUNT_OPTIONS: InjectionToken; export declare function tuiAmountOptionsProvider(options: Partial): Provider;