import { LitElement } from "lit"; export declare class DictationKeybindingInput 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-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "dictation-keybinding-input": DictationKeybindingInput; } }