import type { AsChildTypes } from "../types"; import { type PropsOf } from "@qwik.dev/core"; import { type ThumbType } from "./slider-context"; interface PublicThumbProps extends PropsOf<"div"> { /** The type of thumb - either 'start' or 'end' for range sliders */ type?: ThumbType; } /** Draggable thumb component that users interact with to change slider values */ export declare const SliderThumb: import("@qwik.dev/core").Component; export {};