import React from 'react'; export type Props = { placeholder: string; value: string[]; setValue: (val: string[]) => void; disabled?: boolean; style?: React.CSSProperties; }; export type State = { recordedKeys: string[]; recording: boolean; }; export default class KeybindingInput extends React.Component { state: State; handleChange: (e: any) => void; keypresses: number; handleKeyDown: (e: any) => void; handleKeyUp: (e: any) => void; handleKeyPress: (e: any) => void; handleFocus: () => void; handleBlur: () => void; render(): JSX.Element; }