import { type ScrollViewDirectionType, type ScrollViewOverflowDecoratorsType } from '../../types'; export interface UseScrollViewStyleProps { direction: ScrollViewDirectionType; isScrollbarDisabled?: boolean; isScrolledAtEnd: boolean; isScrolledAtStart: boolean; overflowDecorators: ScrollViewOverflowDecoratorsType; } export interface UseScrollViewStyleReturn { classProps: { root: string; viewport: string; content: string; overflowDecorators: string; arrows: string; }; } export declare const useScrollViewStyleProps: ({ direction, isScrollbarDisabled, isScrolledAtEnd, isScrolledAtStart, overflowDecorators, }: Partial) => UseScrollViewStyleReturn;