import type { ExtractPropTypes, Ref, ComputedRef } from "vue"; export declare const swiperProps: { autoPlay: { type: NumberConstructor; default: any; }; duration: { type: NumberConstructor; default: number; }; vertical: { type: BooleanConstructor; default: boolean; }; loop: { type: BooleanConstructor; default: boolean; }; width: { type: import("vue").PropType; default: string; }; height: { type: import("vue").PropType; default: string; }; button: { type: BooleanConstructor; default: boolean; }; hasTouch: { type: BooleanConstructor; default: boolean; }; stopTime: { type: NumberConstructor; default: number; }; }; export declare type SwiperProps = ExtractPropTypes; export interface SwipeProvider { size: Ref; vertical: ComputedRef; }