import React from "react";
export type HotkeyIndicatorProps = {
    label: string;
    hotkey: string;
    hotkeyWidth?: number;
};
export declare const HotkeyIndicator: React.FC<HotkeyIndicatorProps>;
