import { ReactNode } from 'react'; import { SmoothScrollWrapperProps } from './smooth-scroll-wrapper'; export interface SmoothScrollProps extends SmoothScrollWrapperProps { children?: ReactNode; } export declare function SmoothScroll(props: SmoothScrollProps): import("react/jsx-runtime").JSX.Element;