export interface ICacheRBAC { KEY: string; TTL: number; get(): object | null | Promise; set(value: object): void | Promise; del(): void | Promise; }