import { AllowedRole } from './auth.service'; /** * Is one or more of the `allowedRoles` in `actualRoles`. Implicitly every user (authenticated or unauthenticated) * is a member of the {@link anonymousRole} and that is assumed when verifying `allowedRoles` */ export declare const hasSomeAllowedRoles: (allowedRoles: AllowedRole[], actualRoles: string[]) => boolean; /** * Convenience function to flatten a jagged array of names of roles into a single dimensional array */ export declare const flattenAllowedRoles: (allowedRoles: AllowedRole[]) => string[];