1 | import * as React from "react";
|
2 | import { HotkeyConfig } from "../../hooks";
|
3 | import { DialogProps } from "../dialog/dialog";
|
4 | export interface HotkeysDialogProps 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: readonly HotkeyConfig[];
|
11 | }
|
12 | export declare const HotkeysDialog2: React.FC<HotkeysDialogProps>;
|