import { default as React, ComponentProps } from 'react'; import { Field } from '../Form'; type SearchProps = { /** * The CSS class name */ className?: string; /** * The input placeholder. * @default "Search…" */ placeholder?: string; /** * The field name. */ name: React.ComponentProps["name"]; } & Omit, "id" | "type">; /** * A standalone search component */ export declare const Search: React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=Search.d.ts.map