import { LitElement } from 'lit'; export declare class ToggleButton extends LitElement { selected: boolean; disabled: boolean; value: string; color: 'standard' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'; size: 'small' | 'medium' | 'large'; fullWidth: boolean; static styles: import("lit").CSSResult; private handleClick; render(): import("lit-html").TemplateResult<1>; } export declare class ToggleButtonGroup extends LitElement { value: string; values: string[]; color: 'standard' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'; size: 'small' | 'medium' | 'large'; orientation: 'horizontal' | 'vertical'; exclusive: boolean; disabled: boolean; fullWidth: boolean; static styles: import("lit").CSSResult; connectedCallback(): void; disconnectedCallback(): void; updated(changedProperties: Map): void; private updateChildButtons; private handleToggle; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=ToggleButton.d.ts.map