1 | import { TextField as TextFieldDefinition } from '.';
|
2 | import { EditableTextBase } from '../editable-text-base';
|
3 | import { Property } from '../core/properties';
|
4 | export declare class TextFieldBase extends EditableTextBase implements TextFieldDefinition {
|
5 | static returnPressEvent: string;
|
6 | secure: boolean;
|
7 | closeOnReturn: boolean;
|
8 | secureWithoutAutofill: boolean;
|
9 | }
|
10 | export declare const secureProperty: Property<TextFieldBase, boolean>;
|
11 | export declare const closeOnReturnProperty: Property<TextFieldBase, boolean>;
|