import { ReqUser } from "../lib/models/ReqUser"; /** * Check if a user has a specific activity. * @param reqUser The user to check. * @param activity The activity to check for. * @param wildcardCheck If true, will check for wildcard activities (the same way as activities on endpoints are checked). Otherwise will only check for exact matches. @default true */ export declare function hasActivity(reqUser: ReqUser, activity: string, wildcardCheck?: boolean): boolean; export declare function isGlobal(reqUser: ReqUser): boolean; /** * Short hand function to check if a user has the `canManageOrganization`(`CAN_MANAGE_ORGANIZATION_ACTIVITY`) activity. */ export declare function canManageOrganization(reqUser: ReqUser): boolean;