import React from "react"; import Input from "./Input"; type InputProps = React.ComponentProps; export type SearchInputProps = Omit & { /** * WARNING: Please note that this value is currently not passed on to the * component. It's not deprecated, it will most likely be implemented correctly * at a later stage. */ width?: InputProps["width"]; /** * @deprecated * A search input should never be used in a form with multiple fields. */ asFormField?: InputProps["asFormField"]; /** * @deprecated * A search input should never be in error state, because the * user cannot do anything wrong when typing in this field. */ isError?: InputProps["isError"]; }; export declare const SearchInput: React.ForwardRefExoticComponent & React.RefAttributes>; export {};