import { ReactNode } from 'react'; import { ISmoothScrollContext } from './smooth-scroll-context'; export interface SmoothScrollProviderProps { children?: ReactNode; defaultValue?: Partial; } export declare function SmoothScrollProvider({ children, defaultValue, }: SmoothScrollProviderProps): import("react/jsx-runtime").JSX.Element;