import { GraphSynchronizer, IGraphSyncOptions } from '@ablestack/rdo';
export declare class MobxGraphSynchronizer extends GraphSynchronizer {
    constructor(options?: IGraphSyncOptions);
    smartSync<S extends Record<string, any>, D extends Record<string, any>>({ rootSourceNode, rootRdo }: {
        rootSourceNode: S;
        rootRdo: D;
    }): void;
}
