import { AccessResourcesType } from "./AccessResourcesType"; export declare enum PRIVILEGE { "READ_SELF" = 0, "WRITE_SELF" = 1, "DELETE_SELF" = 2, "READ" = 3, "WRITE" = 4, "DELETE" = 5, "GRANT" = 6, "REVOKE" = 7 } export type ACCESS = { resource: U[keyof U]; privileges: PRIVILEGE; meta?: T; };