import * as React from 'react'; export declare type SearchType = 'lg' | 'primary' | 'button'; export interface ISearchProps { id?: string; label?: string | React.ReactElement; ariaLabelClearSearch?: string | React.ReactElement; buttonText?: string | React.ReactElement; className?: string; placeholder?: string; searchType?: SearchType; disabled?: boolean; onSearch?: (text: string) => void; onInputChange: (text: string) => void; } export declare const Search: React.FC> & React.HTMLProps;