import { Dispatch, SetStateAction } from 'react'; export interface ISmoothScrollContext { smoother: ScrollSmoother | null; setSmoother: Dispatch>; } export declare const SmoothScrollContext: import("react").Context;