type ChangeType = "equal" | "delete" | "insert"; export interface Change { type: ChangeType; value: string; } export declare function diffStrings(oldStr: string, newStr: string): Change[]; export {};