UNPKG

428 BTypeScriptView Raw
1import * as React from "react";
2import { HotkeyConfig } from "../../hooks";
3import { DialogProps } from "../dialog/dialog";
4export interface HotkeysDialog2Props extends DialogProps {
5 /**
6 * This string displayed as the group name in the hotkeys dialog for all
7 * global hotkeys.
8 */
9 globalGroupName?: string;
10 hotkeys: HotkeyConfig[];
11}
12export declare const HotkeysDialog2: React.FC<HotkeysDialog2Props>;