import type { CreateStoreOptions, StoreContext, StoreReadOptions, StoreRecord, StoreResult, StoreSubEntityRead, StoreWhere } from "../../types.js"; interface SubEntityInternals { options: CreateStoreOptions; readBy(entity: string, where: StoreWhere, context: StoreContext, options?: StoreReadOptions): Promise>; } declare function createSubEntityReader(internals: SubEntityInternals): StoreSubEntityRead; export { createSubEntityReader, }; //# sourceMappingURL=read.d.ts.map