import type { ToIumIndexV1 } from './v01.ts'; import type { ToIumIndexV2 } from './v02.ts'; export declare const CURRENT_IUM_VERSION = 2; /** * Index schema generated by the actual version of this package */ export type ToIumIndex = ToIumIndexV2; /** * Union of all index schema versions, used internally to check and migrate the index for proper unserialization. */ export type ToIumIndexVersions = ToIumIndexV1 | ToIumIndexV2; export declare function migrateIumIndex(index: ToIumIndexVersions): ToIumIndex; //# sourceMappingURL=index.d.ts.map