import React from "react"; import type { TextColors } from "../../../types"; export type HotkeyLabelProps = { label: string; color: TextColors; }; export declare const HotkeyLabel: ({ label, color, }: HotkeyLabelProps) => React.ReactElement;