import type { IndexCacheStore } from '../../cache/index/store.ts'; import { PathSpec } from '../../types.ts'; import type { PostgresAccessor } from '../../accessor/postgres.ts'; export interface ReadOptions { limit?: number | null; offset?: number | null; } export declare function readStream(accessor: PostgresAccessor, path: PathSpec | string, index?: IndexCacheStore, options?: ReadOptions): AsyncIterable; export declare function read(accessor: PostgresAccessor, path: PathSpec | string, index?: IndexCacheStore, options?: ReadOptions): Promise; //# sourceMappingURL=read.d.ts.map