import type { IAccessMode } from "../type/i_access_mode.js"; import type { IContext } from "../type/i_context.js"; import type { IPolicy } from "../type/i_policy.js"; /** * # The allow access modes algorithm * * An access mode is allowed if: * - A policy that applies allows it; and * - No policy that applies deny it. * * @param policies The policies to evaluate * @param context The context in which the policies are evaluated * @returns A set of allowed access modes */ export declare function allowAccessModes(policies: IPolicy[], context: IContext): Set; //# sourceMappingURL=allow_access_modes.d.ts.map