import type { Store } from '../../../server/store.js'; import type { LifecycleContext } from '../../../server/types'; export type WithStats = { version: string; value: T | undefined; name: string; }; export type Collector = (options: { store: Store; context: LifecycleContext; }) => Promise> | WithStats; export declare function collectAnalytics(store: Store, context: LifecycleContext): Promise; //# sourceMappingURL=collect-analytics.d.ts.map