import * as React from "react"; export interface SearchProps { type: "small" | "large" | "table"; onChange: (text: string) => void; value: string; placeholder: string; showSearchIcon?: boolean; className?: string; clearable?: boolean; inputProps?: React.InputHTMLAttributes; loading?: boolean; }