import type { SlopeStore, StoreStats } from './store.js'; export interface StoreHealthResult { healthy: boolean; type: string; schemaVersion: number; stats: StoreStats; errors: string[]; } /** Run diagnostics on a SlopeStore and return a health check result. */ export declare function checkStoreHealth(store: SlopeStore, storeType?: string): Promise; //# sourceMappingURL=store-health.d.ts.map