import { type PropsOf, type QRL } from "@qwik.dev/core"; type PublicScrollBarType = PropsOf<"div"> & { /** The orientation of the scrollbar */ orientation?: "vertical" | "horizontal"; /** Event handler for scroll events */ onScroll$?: QRL<(e: Event) => void>; }; /** A scrollbar component that can be oriented vertically or horizontally */ export declare const ScrollAreaScrollbar: import("@qwik.dev/core").Component; export {};