import * as React from 'react';
import type { BaseUIComponentProps } from "../../utils/types.js";
/**
* The draggable part of the the scrollbar that indicates the current scroll position.
* Renders a `
` element.
*
* Documentation: [Base UI Scroll Area](https://base-ui.com/react/components/scroll-area)
*/
export declare const ScrollAreaThumb: React.ForwardRefExoticComponent>;
export interface ScrollAreaThumbState {
orientation?: 'horizontal' | 'vertical';
}
export interface ScrollAreaThumbProps extends BaseUIComponentProps<'div', ScrollAreaThumb.State> {}
export declare namespace ScrollAreaThumb {
type State = ScrollAreaThumbState;
type Props = ScrollAreaThumbProps;
}