import { type Action, type Graph } from './types.js';
/**
* Returns a new graph that contains all the information in the two graphs provided.
*
* Note that this no longer checks the graph for validity — that is the responsibility of the
* caller, as it's up to the caller to determine what to do about it.
*/
export declare const merge: (ours: Graph, theirs: Graph) => Graph;
//# sourceMappingURL=merge.d.ts.map