declare const PORT_NAME: {
    readonly PANEL: "Lynker";
    readonly CONTENT_SCRIPT: "lynker-content-script";
};
declare const MSG_TYPE: {
    readonly PING: "ping";
    readonly PONG: "pong";
    readonly KEEP_ALIVE: "keep-alive";
    readonly GET_ALL_EVENTS: "get-all-events";
    readonly RENDER_EVENT: "render-event";
    readonly CLEAR_EVENTS: "clear-events";
    readonly EVENTS_CLEARED_ACK: "events-cleared-ack";
    readonly ADD_IPC_EVENT: "add-ipc-event";
    readonly SEND_TO_PANEL: "send-to-panel";
};
export { PORT_NAME, MSG_TYPE };
