import React from "react"; interface IUserCRUD { show_alias?: boolean; show_first_name?: boolean; show_last_name?: boolean; show_date_of_birth?: boolean; show_gender?: boolean; show_city?: boolean; view_link: string; form_additional_fields?: React.ReactNode; onFormMount: () => any; onFormUnmount: () => any; } declare const UserCRUD: (props: IUserCRUD) => JSX.Element; export { UserCRUD };