import { WrapperGS, WrapperValued } from '../core/WrapperGS'; export declare class InputGS extends WrapperGS implements WrapperValued { static ForHTMLElement(el: HTMLElement): boolean; constructor(el: HTMLInputElement | string); get value(): string; set value(value: string); }