import { LitElement } from "lit"; export declare class SpeechKeybindingInput extends LitElement { #private; keybindingType: "push-to-talk" | "toggle-to-talk"; _pushToTalkKeybinding?: string | null; _toggleToTalkKeybinding?: string | null; disabled: boolean; _isCapturingKeybinding: boolean; static styles: import("lit").CSSResult[]; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "speech-keybinding-input": SpeechKeybindingInput; } }