///
import React from 'react';
import { InputHTMLAttributes } from "react";
type ComponentProps = {
placeholder?: string;
onChange?: (event: React.ChangeEvent) => void;
};
type SearchBarInputProps = ComponentProps & Omit, 'onChange'>;
declare const SearchBarInput: React.ForwardRefExoticComponent, "onChange"> & React.RefAttributes>;
export { ComponentProps, SearchBarInputProps, SearchBarInput };