import { CompressedPatch, Patch } from "./types"; export declare const dmp: any; export declare function compress_patch(patch: CompressedPatch): CompressedPatch; export declare function decompress_patch(patch: CompressedPatch): CompressedPatch; export declare function make_patch(s0: string, s1: string): CompressedPatch; export declare function apply_patch(patch: CompressedPatch, s: string): [string, boolean]; export declare function patch_cmp(a: Patch, b: Patch): number; export declare function time_cmp(a: Date, b: Date): number; export declare function three_way_merge(opts: { base: string; local: string; remote: string; }): string;