import { PropType, CSSProperties } from 'vue'; import { FollowerPlacement } from 'vueuc'; import { MaybeArray, ExtractPublicPropTypes } from '../../_utils'; export interface ClosestMark { value: number; distance: number; index: number; } export declare const sliderProps: { readonly to: { type: PropType; default: undefined; }; readonly defaultValue: { readonly type: PropType; readonly default: 0; }; readonly marks: PropType>; readonly disabled: { readonly type: PropType; readonly default: undefined; }; readonly formatTooltip: PropType<(value: number) => string | number>; readonly keyboard: { readonly type: BooleanConstructor; readonly default: true; }; readonly min: { readonly type: NumberConstructor; readonly default: 0; }; readonly max: { readonly type: NumberConstructor; readonly default: 100; }; readonly step: { readonly type: PropType; readonly default: 1; }; readonly range: BooleanConstructor; readonly value: PropType; readonly placement: PropType; readonly showTooltip: { readonly type: PropType; readonly default: undefined; }; readonly tooltip: { readonly type: BooleanConstructor; readonly default: true; }; readonly vertical: BooleanConstructor; readonly reverse: BooleanConstructor; readonly 'onUpdate:value': PropType void>>; readonly onUpdateValue: PropType void>>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }; export type SliderProps = ExtractPublicPropTypes; declare const _default: import("vue").DefineComponent<{ readonly to: { type: PropType; default: undefined; }; readonly defaultValue: { readonly type: PropType; readonly default: 0; }; readonly marks: PropType>; readonly disabled: { readonly type: PropType; readonly default: undefined; }; readonly formatTooltip: PropType<(value: number) => string | number>; readonly keyboard: { readonly type: BooleanConstructor; readonly default: true; }; readonly min: { readonly type: NumberConstructor; readonly default: 0; }; readonly max: { readonly type: NumberConstructor; readonly default: 100; }; readonly step: { readonly type: PropType; readonly default: 1; }; readonly range: BooleanConstructor; readonly value: PropType; readonly placement: PropType; readonly showTooltip: { readonly type: PropType; readonly default: undefined; }; readonly tooltip: { readonly type: BooleanConstructor; readonly default: true; }; readonly vertical: BooleanConstructor; readonly reverse: BooleanConstructor; readonly 'onUpdate:value': PropType void>>; readonly onUpdateValue: PropType void>>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }, { mergedClsPrefix: import("vue").ComputedRef; namespace: import("vue").ComputedRef; uncontrolledValue: import("vue").Ref; mergedValue: import("vue").ComputedRef; mergedDisabled: import("vue").ComputedRef; mergedPlacement: import("vue").ComputedRef; isMounted: Readonly>; adjustedTo: import("vue").ComputedRef; dotTransitionDisabled: import("vue").Ref; markInfos: import("vue").ComputedRef<{ active: boolean; label: string; style: CSSProperties; }[]>; isShowTooltip: (index: number) => boolean; shouldKeepTooltipTransition: (index: number) => boolean; handleRailRef: import("vue").Ref; setHandleRefs: (key: number) => (el: any) => void; setFollowerRefs: (key: number) => (el: any) => void; fillStyle: import("vue").ComputedRef<{ [x: string]: string; height: string; width?: undefined; } | { [x: string]: string; width: string; height?: undefined; } | undefined>; getHandleStyle: (value: number, index: number) => Record; activeIndex: import("vue").Ref; arrifiedValues: import("vue").ComputedRef; followerEnabledIndexSet: import("vue").Ref>; handleRailMouseDown: (event: MouseEvent | TouchEvent) => void; handleHandleFocus: (index: number) => void; handleHandleBlur: (index: number) => void; handleHandleMouseEnter: (index: number) => void; handleHandleMouseLeave: (index: number) => void; handleRailKeyDown: (e: KeyboardEvent) => void; indicatorCssVars: import("vue").ComputedRef<{ '--n-font-size': string; '--n-indicator-border-radius': string; '--n-indicator-box-shadow': string; '--n-indicator-color': string; '--n-indicator-text-color': string; }> | undefined; indicatorThemeClass: import("vue").Ref | undefined; indicatorOnRender: (() => void) | undefined; cssVars: import("vue").ComputedRef<{ '--n-bezier': string; '--n-dot-border': string; '--n-dot-border-active': string; '--n-dot-border-radius': string; '--n-dot-box-shadow': string; '--n-dot-color': string; '--n-dot-color-modal': string; '--n-dot-color-popover': string; '--n-dot-height': string; '--n-dot-width': string; '--n-fill-color': string; '--n-fill-color-hover': string; '--n-font-size': string; '--n-handle-box-shadow': string; '--n-handle-box-shadow-active': string; '--n-handle-box-shadow-focus': string; '--n-handle-box-shadow-hover': string; '--n-handle-color': string; '--n-handle-size': string; '--n-opacity-disabled': string; '--n-rail-color': string; '--n-rail-color-hover': string; '--n-rail-height': string; '--n-rail-width-vertical': string; '--n-mark-font-size': string; }> | undefined; themeClass: import("vue").Ref | undefined; onRender: (() => void) | undefined; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; default: undefined; }; readonly defaultValue: { readonly type: PropType; readonly default: 0; }; readonly marks: PropType>; readonly disabled: { readonly type: PropType; readonly default: undefined; }; readonly formatTooltip: PropType<(value: number) => string | number>; readonly keyboard: { readonly type: BooleanConstructor; readonly default: true; }; readonly min: { readonly type: NumberConstructor; readonly default: 0; }; readonly max: { readonly type: NumberConstructor; readonly default: 100; }; readonly step: { readonly type: PropType; readonly default: 1; }; readonly range: BooleanConstructor; readonly value: PropType; readonly placement: PropType; readonly showTooltip: { readonly type: PropType; readonly default: undefined; }; readonly tooltip: { readonly type: BooleanConstructor; readonly default: true; }; readonly vertical: BooleanConstructor; readonly reverse: BooleanConstructor; readonly 'onUpdate:value': PropType void>>; readonly onUpdateValue: PropType void>>; readonly theme: PropType>; readonly themeOverrides: PropType>>; readonly builtinThemeOverrides: PropType>>; }>>, { readonly range: boolean; readonly reverse: boolean; readonly vertical: boolean; readonly tooltip: boolean; readonly disabled: boolean | undefined; readonly step: number | "mark"; readonly max: number; readonly min: number; readonly to: string | boolean | HTMLElement; readonly defaultValue: number | number[]; readonly keyboard: boolean; readonly showTooltip: boolean | undefined; }>; export default _default;