import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; declare const scrollAreaStyles: import('../../style-engine').StylesDef<{ orientation: { vertical: string; horizontal: string; both: string; }; hideScrollbar: { true: string; false: string; }; }>; type ScrollAreaStyleProps = StyleProps; export interface ScrollAreaProps extends Omit, 'className' | keyof ScrollAreaStyleProps>, ScrollAreaStyleProps { className?: string; } export declare function ScrollArea({ orientation, hideScrollbar, className, children, ...props }: ScrollAreaProps): React.JSX.Element; export {};