import React from 'react'; interface Labels { helpTextFor?: string; searchButton?: string; } export interface MdInputSearchProps extends React.InputHTMLAttributes { label?: string; labels?: Labels; supportText?: string; helpText?: string; outerWrapperClass?: string; button?: boolean; mode?: 'small' | 'medium' | 'large'; onSearch: (term: string) => void; } export declare const MdInputSearch: React.ForwardRefExoticComponent>; export default MdInputSearch;