import { FormStateMap } from 'redux-form' export type Settings = { sex: 'm' | 'f' | 'o', firstName: string, lastName: string, phone: string, } export type AppState { form: FormStateMap, settings?: Settings, } export type DispatchProps { dispatch: Function }