import React from "react"; import { ConfigType } from "../core/types"; interface ScrollingType { children: React.ReactNode; options?: ConfigType; } export declare const useScrolling: () => ConfigType; export declare const ScrollingTextProvider: ({ children, options, }: ScrollingType) => React.JSX.Element; export {};