import React from 'react'; interface IUserProfileForm { updateUser: (v: {}) => any; onLoadCities: (text: string, callback: {}) => any; onFetchCity: (id: number, callback: {}) => any; clearCities: () => any; initialValues?: {}; reset?: () => any; submitting?: boolean; pristine?: boolean; handleSubmit?: (onChangePassword: (v: { password_old: string; password: string; password_2: string; }) => any) => any; error?: string; classes?: { card: string; error: string; }; show_alias?: boolean; show_first_name?: boolean; show_last_name?: boolean; show_date_of_birth?: boolean; show_gender?: boolean; show_city?: boolean; } declare let UserProfileForm: React.MemoExoticComponent<(props: IUserProfileForm) => JSX.Element>; export { UserProfileForm };