/** * Enhanced TextInput with cursor control * Based on ink-text-input but with ability to force cursor to end */ import React from 'react'; export interface TextInputWithCursorProps { value: string; placeholder?: string; focus?: boolean; showCursor?: boolean; onChange?: (value: string) => void; onSubmit?: (value: string) => void; moveCursorToEnd?: boolean; } export declare function TextInputWithCursor({ value: originalValue, placeholder, focus, showCursor, onChange, onSubmit, moveCursorToEnd, }: TextInputWithCursorProps): React.JSX.Element; //# sourceMappingURL=TextInputWithCursor.d.ts.map