import { type PropsOf } from "@qwik.dev/core"; type PublicScrollbarVisibility = "hover" | "scroll" | "auto" | "always"; type PublicRootProps = PropsOf<"div"> & { /** Controls when the scrollbars are visible: 'hover', 'scroll', 'auto', or 'always' */ type?: PublicScrollbarVisibility; /** Delay in milliseconds before hiding the scrollbars when type is 'scroll' */ hideDelay?: number; }; /** A root component for scrollable content areas with customizable scrollbar behavior */ export declare const ScrollAreaRoot: import("@qwik.dev/core").Component; export {};