import { FC } from 'react'; export type DiffMatchProps = { text1?: string | number | null; text2?: string | number | null; }; declare const DiffMatch: FC; export default DiffMatch;