import type { FC } from 'react'; import { GuardUserGroupProps } from "./GuardUserGroup.types"; /** * @function * @name GuardUserGroup * @param {{userType: string, owner: string, children: React.ReactComponentElement}} * userType: if the user is authenticated * owner: ex staff, participant, etc. * children: renders the specific components allowed for specified owner * @returns a smart component intended to filter which views are allowed * to access depending on which user is authenticated * @author: Juan Sebastian Perea [Juanse1595] (https://github.com/Juanse1595) * @author: Juan David Avila Caycedo [JuanDAC] (https://github.com/JuanDAC) */ export declare const GuardUserGroup: FC;