import { RESOURCES } from '../constants.ee'; import type { Scope } from '../types.ee'; type ActionBooleans = { [K in T[number]]?: boolean; }; export type PermissionsRecord = { [K in keyof typeof RESOURCES]: ActionBooleans<(typeof RESOURCES)[K]>; }; export declare const getResourcePermissions: (resourceScopes?: readonly Scope[]) => PermissionsRecord; export {};