import type { ModeEnricherRegistry, Store } from "../types.js"; import type { RuntimeComputedHydration, RuntimeCountHydration, RuntimeRelationHydration, RuntimeEntityRegistry } from "./types.js"; declare function relation(config: Omit): RuntimeRelationHydration; declare function countBy(config: Omit): RuntimeCountHydration; declare function computed(compute: RuntimeComputedHydration["compute"]): RuntimeComputedHydration; declare function createHydrationEnrichers(entities: RuntimeEntityRegistry, getStore: () => Store): ModeEnricherRegistry; export { computed, countBy, createHydrationEnrichers, relation, }; //# sourceMappingURL=hydration.d.ts.map