import React from "react";
import { TextFieldProps } from "@mui/material";
export interface SearchBarProps extends Omit<TextFieldProps, "onChange" | "onSubmit"> {
    defaultValue?: string;
    onChange?: (inputs: string) => void;
    onSubmit?: (inputs: string) => void;
}
export declare const SearchBar: React.FC<SearchBarProps>;
declare const _default: React.NamedExoticComponent<SearchBarProps>;
export default _default;
