import React from 'react'; import { ICRUDModalForm } from '../../../../interfaces'; interface ICRUDModalFormUser extends ICRUDModalForm { show_alias?: boolean; show_first_name?: boolean; show_last_name?: boolean; show_date_of_birth?: boolean; show_gender?: boolean; show_city?: boolean; } declare let UserCRUDForm: React.MemoExoticComponent<(props: ICRUDModalFormUser) => JSX.Element>; export { UserCRUDForm };