interface IUserFormBase { onLoadCities?: (text: string, callback: {}) => any; onFetchCity?: (id: number, callback: {}) => any; clearCities?: () => any; initialValues?: {}; fullScreen: boolean; show_alias?: boolean; show_first_name?: boolean; show_last_name?: boolean; show_date_of_birth?: boolean; show_gender?: boolean; show_city?: boolean; } declare const UserFormBase: (props: IUserFormBase) => JSX.Element; export { UserFormBase };