interface DiffModalProps { filename: string; show: boolean; onHide: () => void; } export default function DiffModal({ filename, show, onHide }: DiffModalProps): import("react/jsx-runtime").JSX.Element; export {};