/** The coordinatedCutover update strategy (single-step — no from/to). */ import type { SchemaUpdateStrategy, TransformFn } from './types.js'; export declare function coordinatedCutover(opts: { readonly transform: TransformFn; }): SchemaUpdateStrategy;