import { UserService } from "./UserService"; export declare class ACL { private userService; constructor(userService: UserService); LIST: { Story: { write: string[]; "delete": string[]; deny: string[]; }; Comment: { write: string[]; }; Poll: { write: string[]; "delete": string[]; deny: string[]; close: string[]; }; }; can(action: any, model?: any): boolean; getRoles(): any; isSales(): boolean; isAdmin(): boolean; isSuper(): boolean; isOwner(model: any): boolean; }