import { PropsWithChildren } from 'react'; import * as d3 from "d3"; export interface SwipeScrollProps extends PropsWithChildren { width: number; duration?: number; animationFunc?: (timing: number) => number; onSwipe?: (x: number, selection: d3.Selection) => void; }