import type { SlopeStore } from '../core/index.js'; /** Store info from config — no store connection required */ export interface StoreInfo { type: string; path?: string; sanitizedUrl?: string; projectId?: string; } /** Read store info from config without opening the store */ export declare function getStoreInfo(cwd?: string): StoreInfo; export declare function resolveStore(cwd?: string): Promise; //# sourceMappingURL=store.d.ts.map