import type { PropType, ExtractPropTypes } from 'vue'; import type { ThumbData } from './types'; export declare const thumbProps: { data: { type: PropType; }; direction: { type: PropType<"horizontal" | "vertical">; default: string; }; alwaysShow: { type: BooleanConstructor; default: boolean; }; both: { type: BooleanConstructor; default: boolean; }; }; export type ThumbProps = ExtractPropTypes;