import { BehaviorSubject, Observable } from 'rxjs'; import { Destroyable } from '../common/destroyable'; export declare abstract class InputToken extends Destroyable { hasError: BehaviorSubject; valueChange: Observable; height?: string; protected constructor(); abstract focus(): void; }