import * as React from 'react'; import * as P from '../../PresentationTypes'; interface ThemeInputProps { label: string; value: string; themes: P.Theme[]; helperText: React.ReactNode; error?: boolean; onChange: (value: string) => any; onBlur: React.FocusEventHandler; } declare const ThemeInput: React.SFC; export default ThemeInput;