import { CSSResultArray, TemplateResult } from 'lit'; import { LuzmoElement } from '../../utils/base'; type HelpTextVariants = 'neutral' | 'negative'; declare const LuzmoHelpText_base: typeof LuzmoElement & { new (...args: any[]): import("../..").SizedElementInterface; prototype: import("../..").SizedElementInterface; }; /** * @element luzmo-help-text */ export declare class LuzmoHelpText extends LuzmoHelpText_base { static get styles(): CSSResultArray; icon: boolean; /** * The visual variant to apply to this help text. */ variant: HelpTextVariants; protected render(): TemplateResult; } export {};