import React from 'react'; import { ButtonTextFieldProps } from './ButtonTextField'; export interface SearchBarProps extends ButtonTextFieldProps { onSearch?: (query: string) => void; enableSearchButton?: boolean; ariaLabel?: string; } declare const SearchBar: React.ForwardRefExoticComponent & React.RefAttributes>; export { SearchBar };