/** * InputArea Component * User input with command handling using useStdin for raw input handling * Features: Tab completion, command suggestions, styled input box, * input history (Up/Down), cursor movement (Left/Right), * multi-line paste (bracketed paste mode + fast-return fallback), * and multi-line input (backslash continuation) */ import React from 'react'; interface InputAreaProps { onSubmit: (value: string) => void; onInputChange?: (value: string) => void; onTabComplete?: (value: string) => string | null; suggestions?: string[]; disabled?: boolean; placeholder?: string; } export declare const InputArea: React.FC; export {}; //# sourceMappingURL=InputArea.d.ts.map