import { InjectionToken } from '@angular/core'; /** * This token is used to inject the object whose value should be set into {@link TsInputComponent}. If none is * provided, the native `HTMLInputElement` is used. Directives like {@link TsAutocompleteTriggerDirective} can provide * themselves for this token, in order to make `TsInputComponent` delegate the getting and setting of the * value to them. */ export declare const TS_INPUT_VALUE_ACCESSOR: InjectionToken<{ value: any; }>;