import type { InstallOptions, IpcEventDataIndexed } from './types/shared'; declare function install(options?: InstallOptions): Promise; /** * Retrieves the list of IPC events tracked by Devtron. * * - If called before installation or before the Devtron service worker is ready, * an empty array will be returned. */ declare function getEvents(): Promise; export declare const devtron: { install: typeof install; getEvents: typeof getEvents; }; export {};