import { FC } from "react"; import { FilledTextFieldProps } from "@material-ui/core/TextField"; export interface SearchFormProps extends Omit { /** Function to be called when the user clicks the 'X' to clear the form. */ onClear?: () => void; /** Value passed through to the input. */ value?: string; /** Label/placeholder for the input. */ label?: string | undefined; } /** * A form input that resembles search, including internal state for * clearing the form. Use in conjunction with ResultsList for great looking search forms. * Extends [`@material-ui/core/FilledInput`](https://material-ui.com/api/filled-input/). * Works great with `setState()`. */ export declare const SearchForm: FC; export default SearchForm; //# sourceMappingURL=index.d.ts.map