import type { EntityRegistry } from "../types.js"; import type { RuntimeEntityRegistry } from "./types.js"; interface RuntimeStorageDefaults { hasPostgres: boolean; hasSqlite: boolean; } declare function normalizeRuntimeEntities(entities: RuntimeEntityRegistry, defaults: RuntimeStorageDefaults): EntityRegistry; declare function normalizeHookName(input: string): string; export { normalizeHookName, normalizeRuntimeEntities, }; //# sourceMappingURL=registry.d.ts.map