import React from 'react';
import { TextFieldProps } from './types';
export declare function TextField({ text, style, onChange, placeholder, ...modifiers }: TextFieldProps): React.JSX.Element;
export declare function SecureField({ text, style, onChange, placeholder, ...modifiers }: TextFieldProps): React.JSX.Element;
export declare function TextEditor({ text, style, onChange, placeholder, ...modifiers }: TextFieldProps): React.JSX.Element;
