import { ElementRef, OnDestroy } from '@angular/core'; import { MDCSelectHelperTextFoundation } from '@material/select'; import { MDCComponent } from '@shraddhar/web/base'; export declare class MdcSelectHelperTextFoundation extends MDCComponent implements OnDestroy { _hostElement: ElementRef; private _document; private _initialized; _helperLineElement?: HTMLElement; get foundation(): MDCSelectHelperTextFoundation; constructor(_hostElement: ElementRef, _document: Document); getDefaultFoundation(): MDCSelectHelperTextFoundation; /** Sets the persistency of the helper text. */ setPersistent(isPersistent: boolean): void; /** True to make the helper text act as an error validation message. */ setValidation(isValidation: boolean): void; /** Sets the validity of the helper text based on inputIsValid. */ setValidity(inputIsValid: boolean): void; /** Makes the helper text visible to the screen reader. */ showToScreenReader(): void; /** Sets the content of the helper text. */ setContent(content: string): void; /** Initializes the foundation. */ init(): void; /** Destroys the foundation. */ destroy(): void; /** Creates and appends the helper element. */ private _createHelperElement; /** * Appends the helper element to the select. */ private _appendHelperElement; ngOnDestroy(): void; }