import * as React from 'react'; export type KeybindingDialogProps = { isOpen: boolean; keybindingItem: any; newWhen: string; editWhenIndex: number; selectedIndex: number; }; export declare const displayKeys: (keyValue: any, joinText: any, css: any) => React.JSX.Element; export declare const KeyBindingDialog: (props: KeybindingDialogProps) => React.JSX.Element;