interface UseScrollClassProps { flexDirection?: string; overflow?: string; } export declare function useScrollClass({ overflow, flexDirection, }: UseScrollClassProps): { scrollerClass: string; onScroll: () => null; }; export {};