import { int } from '../types/NativeAliases'; export declare class Unlock { /** * @param unlockHash * @param toggle */ static setVisible(unlockHash: string | number, toggle: boolean): void; /** * @param unlockHash * @returns */ static isLootable(unlockHash: string | number): boolean; /** * @param unlockHash * @param flag * @returns */ static isUnlockFlagSet(unlockHash: string | number, flag: int): boolean; /** * @param unlockHash * @returns */ static isUnlocked(unlockHash: string | number): boolean; /** * @param unlockHash * @param toggle */ static setNew(unlockHash: string | number, toggle: boolean): void; /** * @param unlockHash * @returns */ static isNew(unlockHash: string | number): boolean; /** * @param unlockHash * @returns outData */ static getItemRoleUnlockInfo(unlockHash: string | number): number; /** * @param unlockHash * @param toggle */ static setUnlocked(unlockHash: string | number, toggle: boolean): void; /** * @param unlockHash * @returns */ static isVisible(unlockHash: string | number): boolean; } //# sourceMappingURL=Unlock.d.ts.map