import * as sanity_migrate0 from "sanity/migrate"; /** * Creates a migration that automatically finds all internationalized array * item objects and moves language identifiers from `_key` to the dedicated * `language` field, generating new random `_key` values. * * Detection is automatic: the `object` handler is called for every object in * every matching document. If the object has a `_type` matching * `internationalizedArray*Value` and is missing the `language` field, it is * migrated. */ declare function migrateToLanguageField(documentTypes: string[]): { title: string; documentTypes: string[]; migrate: { object(node: Node): sanity_migrate0.SetOp | undefined; }; }; export { migrateToLanguageField }; //# sourceMappingURL=index.d.ts.map