import { CSSResultArray, PropertyValues, TemplateResult } from 'lit'; import { LuzmoElement } from '../../utils/base'; declare const LuzmoFieldGroup_base: typeof LuzmoElement & { new (...args: any[]): import("./../text-field/manage-help-text").HelpTextElementInterface; prototype: import("./../text-field/manage-help-text").HelpTextElementInterface; }; /** * @element luzmo-field-group * @slot - the form controls that make up the group * @slot help-text - default or non-negative help text to associate to your form element * @slot negative-help-text - negative help text to associate to your form element when `invalid` */ export declare class LuzmoFieldGroup extends LuzmoFieldGroup_base { static get styles(): CSSResultArray; horizontal: boolean; invalid: boolean; label: string; vertical: boolean; protected handleSlotchange(): void; protected render(): TemplateResult; protected firstUpdated(changes: PropertyValues): void; protected updated(changes: PropertyValues): void; } export {};