export default function simpleDiffWithCursor(a: string, b: string, cursor: number): {
    index: number;
    insert: string;
    remove: number;
};
