import { BaseFlags } from "./Flags"; import { Permissions } from "./Permissions"; export declare class PermissionFlags extends BaseFlags { constructor(bits: number); has(flag: Permissions): boolean; add(flag: Permissions): this; remove(flag: Permissions): this; all(): Permissions[]; } export interface PermissionOverride { allow: PermissionFlags; deny: PermissionFlags; }