import { SearchTypes } from "@medusajs/framework/types"; import { SearchIndexRegistry } from "../types"; /** * The physical index a version is built under. Every version — including the * first — gets one, so `definition.physical_name` is never itself a physical * index: it is only the root every version's name is derived from. */ export declare function versionPhysicalName(definition: SearchTypes.ResolvedSearchIndexDefinition, version: number): string; export declare function createIndexMigrationPlan(context: SearchIndexRegistry): Promise; export declare function executeIndexMigrationPlan(context: SearchIndexRegistry, actions: SearchTypes.SearchIndexMigrationAction[]): Promise; //# sourceMappingURL=migrations.d.ts.map