import { AthenaDiagnosticEvent, AthenaDiagnosticGraph, AthenaDiagnosticSnapshot } from './types.js'; export declare function getAthenaDevtoolsRegistry(): { event(event: AthenaDiagnosticEvent): void; publish(key: string, snapshot: AthenaDiagnosticSnapshot): () => void; read(): AthenaDiagnosticGraph; reset(): void; subscribe(listener: () => void): () => void; }; export declare function resetAthenaDevtoolsRegistry(): void; export declare function subscribeAthenaDevtoolsRegistry(onStoreChange: () => void): () => void; export declare function getAthenaDevtoolsRegistrySnapshot(): AthenaDiagnosticGraph;