/// import React from 'react'; import { ActionKey } from '../../helpers'; import { Key } from 'readline'; declare type Props = { value: string; placeholder?: string; focus?: boolean; mask?: string; highlightPastedText?: boolean; showCursor?: boolean; keyPressed: KeyPressed; onChange: (text: string) => void; onSubmit?: (text: string) => void; }; export declare type KeyPressed = { key: ActionKey; str: string; originalKey: Key; }; export declare const InkTextInput: React.FC; export {};