import React from 'react'; interface InputBoxProps { onSubmit: (text: string) => void; /** While true the user can still type, but Enter does not send (text preserved). */ awaitingResponse?: boolean; /** Whether this input owns the keyboard (false when dashboard/modal has focus). */ focus?: boolean; } export declare function InputBox({ onSubmit, awaitingResponse, focus }: InputBoxProps): React.JSX.Element; export {};