import { FC, Ref } from '@dineug/r-html'; import { AppContext } from '../../appContext'; export type DiffViewerProps = { app: Ref; initialValue: string; onClose: () => void; }; declare const DiffViewer: FC; export default DiffViewer;