UNPKG

537 BTypeScriptView Raw
1import * as React from "react";
2import { AbstractPureComponent2 } from "../../common";
3import { IHotkeysProps } from "./hotkeysTypes";
4/**
5 * Hotkeys component.
6 *
7 * @see https://blueprintjs.com/docs/#core/components/hotkeys
8 */
9export declare class Hotkeys extends AbstractPureComponent2<IHotkeysProps> {
10 static displayName: string;
11 static defaultProps: {
12 tabIndex: number;
13 };
14 render(): JSX.Element | null;
15 protected validateProps(props: IHotkeysProps & {
16 children: React.ReactNode;
17 }): void;
18}