import type { Event } from './types/event/Event.ts';
export declare function initializeWebSocket({ ip, accessToken, callback, }: {
    ip: string;
    accessToken: string;
    callback: (o: Event) => void | Promise<void>;
}): void;
export declare function closeWebSocket(): void;
