export type KendoScrollViewProps = {
    mode?: "light" | "normal" | "dark";
    views?: number;
    currentView?: number;
    animate?: boolean;
    arrows?: boolean;
    pager?: boolean;
    rtl?: boolean;
};
export declare const ScrollView: {
    (props: KendoScrollViewProps & React.HtmlHTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {
        mode: string;
        views: number;
        currentView: number;
        animate: boolean;
        arrows: boolean;
        pager: boolean;
        rtl: boolean;
    };
};
export default ScrollView;
