UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

11 lines (10 loc) 425 B
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;