import { SearchBar as SearchBarDefinition } from '.'; import { View } from '../core/view'; import { Property } from '../core/properties'; import { Color } from '../../color'; export declare abstract class SearchBarBase extends View implements SearchBarDefinition { static submitEvent: string; static clearEvent: string; text: string; hint: string; textFieldBackgroundColor: Color; textFieldHintColor: Color; clearButtonColor: Color | string; abstract dismissSoftInput(): any; } export declare const textProperty: Property; export declare const hintProperty: Property; export declare const textFieldHintColorProperty: Property; export declare const textFieldBackgroundColorProperty: Property; export declare const clearButtonColorProperty: Property;