import { KeybindingHintProps } from "./props.js";

//#region src/KeybindingHint/KeybindingHint.d.ts
/** Indicates the presence of an available keybinding. */
declare const KeybindingHint: import("react").MemoExoticComponent<({
  className,
  ...props
}: KeybindingHintProps) => import("react").JSX.Element>;
//#endregion
export { KeybindingHint };