import * as React from "react";
interface HorizontalOverflowWrapperProps {
    children: React.ReactNode;
    ariaLabels: {
        scrollRightButton: string;
        scrollLeftButton: string;
    };
    scrollMode?: "buttons" | "scrollbar";
}
export declare const HorizontalOverflowWrapper: React.FC<HorizontalOverflowWrapperProps>;
export {};
