import { Name, NameType } from "./name.js"; import { Struct } from "./struct.js"; export type PermissionLevelType = PermissionLevel | { actor: NameType; permission: NameType; }; export declare class PermissionLevel extends Struct { actor: Name; permission: Name; static from(value: PermissionLevelType | string): PermissionLevel; equals(other: PermissionLevelType | string): any; toString(): string; } //# sourceMappingURL=permission-level.d.ts.map