import SgdsElement from "./sgds-element"; export default class FormControlElement extends SgdsElement { static styles: import("lit").CSSResult[]; /** The input's label */ label: string; /** The input's hint text */ hintText: string; /** The input's name attribute */ name: string; /** Disables the input. */ disabled: boolean; /** Marks the component as invalid. Replace the pseudo :invalid selector for absent in custom elements */ invalid: boolean; protected _controlId: string; protected _labelId: string; /** Programatically sets the invalid state of the input. Pass in boolean value in the argument */ setInvalid(bool: boolean): void; }