import type { ExtractPropTypes } from 'vue'; import type Thumb from './thumb.vue'; export declare const thumbProps: { vertical: BooleanConstructor; size: StringConstructor; move: NumberConstructor; ratio: { type: NumberConstructor; required: true; }; always: BooleanConstructor; hideAfter: { type: NumberConstructor; default: number; }; }; export type ThumbProps = ExtractPropTypes; export type ThumbInstance = InstanceType & unknown;