import { SpringOptions } from 'framer-motion'; export interface ScrollProgressProps { className?: string; options?: SpringOptions; } /** * @name ScrollProgress * * @description An animated bar that indicates the scroll progress of the scroll * * @param className Custom classes to add or override styles with tailwind. * * @param options Custom object from framer-motion to override or add the animation. * * @example ``` *
Note: The scroll progress is shown below the navbar of the page. ...content of the website...
* ``` * * @returns JSX Element */ export declare function ScrollProgress({ className, options }: ScrollProgressProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=scroll-progress.d.ts.map