import type { AsChildTypes } from "../types"; import { type PropsOf } from "@qwik.dev/core"; type PublicTooltipPlacement = "top" | "bottom" | "left" | "right"; interface PublicTooltipProps extends PropsOf<"div"> { /** The placement of the tooltip relative to the thumb. Default is 'top' */ placement?: PublicTooltipPlacement; } /** Component that displays the current value in a tooltip */ export declare const SliderTooltip: import("@qwik.dev/core").Component; export {};