declare function applyPatch(db: any, patch: any, shouldClone: any): {
    revert: any;
    changed: {
        full: never[];
        partial: never[];
    };
};
export default applyPatch;
