import { ControlValueAccessor } from '@angular/forms'; import { DoubleInputInterface } from './double-input.interface'; import { TerraPlacementEnum } from '../../../../../helpers'; import { L10nLocale } from 'angular-l10n'; import * as i0 from "@angular/core"; export declare class DoubleInputComponent implements ControlValueAccessor, DoubleInputInterface { _locale: L10nLocale; /** If true, the input will be disabled. Default false. */ isDisabled: boolean; /** If true, a * indicates that the value is required. Default false. */ isRequired: boolean; /** Set the label. */ name: string; /** Set the tooltip placement (bottom, top, left, right). Default top. */ tooltipPlacement: TerraPlacementEnum; /** Set the tooltip. */ tooltipText: string; /** If true, the value will be right-aligned. Default false. */ isPriceInput: boolean; /** Set the decimal count. Default is 2 (0.01). */ set decimalCount(decimalCount: number); /** Internal decimal count for error message */ _decimalCount: number; /** The internal data model. */ value: number; /** Stores the pattern for the validation. */ _regex: string; /** Stores the step size. */ _step: number; /** Placeholders for the callbacks which are later provided by the Control Value Accessor. */ _onTouchedCallback: () => void; _onChangeCallback: (_: number) => void; constructor(_locale: L10nLocale); /** Registers a callback function that is called when the control's value changes in the UI. */ registerOnChange(fn: (_: number) => void): void; /** Registers a callback function that is called by the forms API on initialization to update the form model on blur. */ registerOnTouched(fn: () => void): void; /** Writes a new value to the element. */ writeValue(value: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }