import React from "react"; interface TextFieldSearchProps { value?: string; onChange: (value: string) => void; onSubmit: () => void; placeholder?: string; isFocus?: boolean; } declare function TextFieldSearch({ value, onChange, onSubmit, placeholder, isFocus, }: TextFieldSearchProps): React.JSX.Element; export default TextFieldSearch;