import type { AsChildTypes } from "../types"; import type { BindableProps } from "../types"; import { type PropsOf } from "@qwik.dev/core"; import { type SliderValue } from "./slider-context"; type DivProps = Omit, "value" | "min" | "max" | "step" | "disabled" | "onChange$">; interface PublicSliderProps { onChange$?: (value: SliderValue) => void; onChangeEnd$?: (value: SliderValue) => void; name?: string; required?: boolean; } type PublicRootProps = DivProps & PublicSliderProps & BindableProps<{ value: SliderValue; disabled: boolean; min: number; max: number; step: number; }>; /** Root component that provides slider context and handles core slider functionality */ export declare const SliderRoot: import("@qwik.dev/core").Component; export {};