1 | import { SearchBar as SearchBarDefinition } from '.';
|
2 | import { View } from '../core/view';
|
3 | import { Property } from '../core/properties';
|
4 | import { Color } from '../../color';
|
5 | export declare abstract class SearchBarBase extends View implements SearchBarDefinition {
|
6 | static submitEvent: string;
|
7 | static clearEvent: string;
|
8 | text: string;
|
9 | hint: string;
|
10 | textFieldBackgroundColor: Color;
|
11 | textFieldHintColor: Color;
|
12 | abstract dismissSoftInput(): any;
|
13 | }
|
14 | export declare const textProperty: Property<SearchBarBase, string>;
|
15 | export declare const hintProperty: Property<SearchBarBase, string>;
|
16 | export declare const textFieldHintColorProperty: Property<SearchBarBase, Color>;
|
17 | export declare const textFieldBackgroundColorProperty: Property<SearchBarBase, Color>;
|