import { default as React } from 'react'; import { FieldErrorProps, InputProps, SearchFieldProps } from 'react-aria-components'; interface SearchbarProps extends SearchFieldProps { label?: string; placeholder?: string; inputProps?: InputProps; showFieldError?: boolean; fieldErrorProps?: FieldErrorProps; } declare function Searchbar({ label, placeholder, inputProps, className, showFieldError, fieldErrorProps, ...props }: Readonly): React.JSX.Element; export default Searchbar;