UNPKG

776 BTypeScriptView Raw
1import { SearchBar as SearchBarDefinition } from '.';
2import { View } from '../core/view';
3import { Property } from '../core/properties';
4import { Color } from '../../color';
5export 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}
14export declare const textProperty: Property<SearchBarBase, string>;
15export declare const hintProperty: Property<SearchBarBase, string>;
16export declare const textFieldHintColorProperty: Property<SearchBarBase, Color>;
17export declare const textFieldBackgroundColorProperty: Property<SearchBarBase, Color>;