export declare class NetEvent {
    readonly type: string;
    readonly data: Uint8Array;
    constructor(type: string, data: Uint8Array);
}
