import { Ref } from 'vue'; export interface TextComparisonOptions { customColors?: { commonColor?: string; removedColor?: string; addedColor?: string; }; } export interface DiffStyles { common: { color: string; }; removed: { backgroundColor: string; color: string; }; added: { backgroundColor: string; color: string; }; } export declare function useTextComparison(initialText1: string | Ref, initialText2: string | Ref, options?: TextComparisonOptions): { diffResult: import('vue').ComputedRef; similarity: import('vue').ComputedRef; styles: import('vue').ComputedRef; updateTexts: (newText1: string, newText2: string) => void; };