import * as React from 'react'; import { IShortcutRegistry, IShortcutTarget, IShortcutUI } from '../types'; /** Props for ShortcutList component */ export interface IShortcutListProps { shortcuts: IShortcutTarget[]; addKeybinding: IShortcutUI['addKeybinding']; replaceKeybinding: IShortcutUI['replaceKeybinding']; resetKeybindings: IShortcutUI['resetKeybindings']; deleteKeybinding: IShortcutUI['deleteKeybinding']; findConflictsFor: IShortcutRegistry['findConflictsFor']; showSelectors: boolean; height: number; external: IShortcutUI.IExternalBundle; } /** React component for list of shortcuts */ export declare class ShortcutList extends React.Component { render(): JSX.Element; }