import type { MergeReport } from './workbook-merge.js'; export interface OperationsResult { readonly operations: readonly Record[]; /** Rows that cannot be turned into an operation, with the reason. */ readonly refusals: readonly string[]; } export declare const operationsFrom: (report: MergeReport, working: ReadonlyMap) => OperationsResult; /** The operations document `apply` takes. */ export declare const operationsDocument: (operations: readonly Record[]) => Record;