import type { ValueOf } from 'type-fest';
export declare const GuiEvents: {
    readonly SERVER_INIT: "serverInit";
    readonly SERVER_READY: "serverReady";
};
export type GuiEvents = typeof GuiEvents;
export type GuiEvent = ValueOf<GuiEvents>;
