import React from 'react'; interface TextInputWrapperProps { value: string; onChange: (value: string) => void; onSubmit?: (value: string) => void; placeholder?: string; focus?: boolean; } declare const TextInputWrapper: React.FC; export default TextInputWrapper;