import { FunctionComponent } from 'react';
export interface ScrollAreaProps {
    horizontal?: boolean;
    vertical?: boolean;
    className?: string;
}
export declare const ScrollArea: FunctionComponent<ScrollAreaProps>;
