export declare class OP_IDENTIFY { data: IIDENTIFY; constructor(); setToken(token: string): this; setIntents(intents: number): this; setShard(shard: [number, number]): this; op(): IIDENTIFY; } interface IIDENTIFY { op: 2; d: { token: string; intents: number; shard?: [number, number]; properties: { $os: string; $browser: string; $device: string; }; }; } export {};