import React from 'react'; interface TextInputProps { label: string; value: string; onChange: (value: string) => void; placeholder?: string; mask?: string; tabIndex: number; onSubmit?: () => void; } export declare const TextInput: React.SFC; export {};