import { LitElement, TemplateResult } from 'lit'; export declare const elementName = "frc-toggle-group"; export declare const toggleGroupConfig: { dashboard: { displayName: string; }; properties: { options: { type: string; changeEvent: string; defaultValue: string[]; input: { type: string; }; }; value: { primary: boolean; type: string; changeEvent: string; input: { type: string; allowCustomValues: boolean; getOptions(): string[]; }; }; }; }; export declare class ToggleGroup extends LitElement { #private; options: string[]; value: string; static styles: import("lit").CSSResult; setValue(value: string): Promise; updated(changedProps: Map): void; render(): TemplateResult; }