export type RbacStackContext = { adminRbacEnabled: boolean; adminRbacApiEnabled: boolean; jobsEnabled: boolean; }; export declare function getRbacStackContext(projectRoot: string): RbacStackContext; /** * Ghi đè các file RBAC dùng chung admin-rbac / admin-rbac-api theo registry. */ export declare function syncRbacStackFiles(projectRoot: string, dryRun?: boolean, installingFeatureId?: string): string[]; export declare function isRbacFeatureEnabled(projectRoot: string): boolean;