import { LitElement } from 'lit'; import { HelperTextSize, HelperTextAppearance } from '@viasat/beam-shared/components/helperText'; import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; import { Optional } from '@viasat/beam-shared/utils/types'; /** * * @slot default - Add or customize content in the HelperText * @slot icon - Specify a different icon for the HelperText * */ export declare class BmHelperText extends LitElement { #private; /** * Specify the appearance of the HelperText */ appearance: HelperTextAppearance; /** * Specify the size of the HelperText */ size: HelperTextSize; /** * Specify if the message is disabled for HelpText */ disabled: boolean; /** * Specify if the icon displays on the HelperText */ hideIcon: boolean; /** * Add or customize content in the HelperText */ text: Optional; /** * Specify the theme of the HelperText. By default it inherits the theme from the parent */ theme: Optional; static styles: import('lit').CSSResult; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-helper-text': BmHelperText; } } //# sourceMappingURL=HelperText.d.ts.map