import { ElementRef, OnInit } from '@angular/core'; import { InputType } from '../../../core-components.types'; import * as i0 from "@angular/core"; export declare class GtrFormControlDirective implements OnInit { private hostElement; constructor(hostElement: ElementRef); /** * Size the component small or large. * @type {'sm' | 'lg'} */ sizing?: '' | 'sm' | 'lg' | string; /** * Set component validation state to valid. * @type boolean */ valid?: boolean; /** * Specifies the type of input element. */ type: Omit; /** * Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use alongside `readonly` [docs] */ plaintext: string | boolean; get hostClasses(): any; get hostTag(): string; ngOnInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; static ngAcceptInputType_plaintext: unknown; }