import { ACL, ACLRole } from '@nocobase/acl'; import { Model } from '@tugraph/database'; import { AssociationFieldsActions, GrantHelper } from '../server'; export declare class RoleResourceModel extends Model { revoke(options: { role: ACLRole; resourceName: string; grantHelper: GrantHelper; }): Promise; writeToACL(options: { acl: ACL; associationFieldsActions: AssociationFieldsActions; grantHelper: GrantHelper; transaction: any; }): Promise; }