import { type PropType, type StyleValue } from 'vue'; export interface SwiperDotProps { rootStyle?: StyleValue; rootClass?: string; type?: 'dot' | 'dot-bar' | 'index' | 'title' | 'fraction'; current?: number; total?: number; list?: any[]; field?: string; } export declare const swiperDotProps: { rootStyle: PropType; rootClass: StringConstructor; type: { type: PropType<"index" | "title" | "dot" | "dot-bar" | "fraction" | undefined>; default: string; }; current: { type: NumberConstructor; default: number; }; total: { type: NumberConstructor; default: number; }; list: PropType; field: { type: StringConstructor; default: string; }; };