import { ComponentType } from 'react'; import { HunkData, Source } from '../utils'; export default function withSourceExpansion():
(ComponentIn: ComponentType
) => { (props: P & { onExpandRange: (start: number, end: number) => void; }): JSX.Element; displayName: string; };