import { RangeScrollbarHandleProps, RangeScrollbarRootProps, RangeScrollbarThumbProps } from "../../rangeScrollbar/RangeScrollbar.mjs"; import "../../rangeScrollbar/index.mjs"; import React from "react"; //#region src/components/scrollbars/VerticalScrollbar.d.ts /** Props for the timeline vertical scrollbar root. */ type VerticalScrollbarRootProps = Omit; /** Props for the timeline vertical scrollbar thumb. */ type VerticalScrollbarThumbProps = RangeScrollbarThumbProps; /** Props for a timeline vertical scrollbar resize handle. */ type VerticalScrollbarHandleProps = RangeScrollbarHandleProps; /** * Timeline-aware scrollbar root for panning the vertical track viewport. * * @param props - Timeline vertical scrollbar DOM props. * @returns A range scrollbar root wired to the current `TimelineEngine`. */ declare const VerticalScrollbarRoot: React.ForwardRefExoticComponent & React.RefAttributes>; /** * Draggable timeline vertical scrollbar thumb. * * @param props - DOM props and optional custom content for the vertical thumb. * @returns A range scrollbar thumb that pans the timeline track viewport. */ declare const VerticalScrollbarThumb: React.ForwardRefExoticComponent & React.RefAttributes>; /** * Timeline vertical scrollbar resize handle. * * @param props - Handle props. * @returns A range scrollbar handle for custom vertical range compositions. */ declare const VerticalScrollbarHandle: React.ForwardRefExoticComponent & React.RefAttributes>; /** * Namespace of timeline-aware vertical scrollbar components. */ declare const VerticalScrollbar: { /** Root element wired to timeline vertical scroll state. */ Root: React.ForwardRefExoticComponent & React.RefAttributes>; /** Draggable thumb that pans the timeline track viewport. */ Thumb: React.ForwardRefExoticComponent & React.RefAttributes>; /** Range handle for custom vertical range compositions. */ Handle: React.ForwardRefExoticComponent & React.RefAttributes>; }; //#endregion export { VerticalScrollbar, VerticalScrollbarHandle, VerticalScrollbarHandleProps, VerticalScrollbarRoot, VerticalScrollbarRootProps, VerticalScrollbarThumb, VerticalScrollbarThumbProps }; //# sourceMappingURL=VerticalScrollbar.d.mts.map