import type { ComponentInterface } from '../../stencil-public-runtime'; export declare class JackerySpinner implements ComponentInterface { /** * 垂直排列 col: 垂直 | row: 水平 */ vertical?: "col" | "row"; /** * 加载类型:圆 | 环 */ type?: "circular" | "spinner"; /** * 自定义大小 */ size?: string; /** * 自定义颜色 */ color?: string; rotate: number; getFontSize(): string; iconRotate(): void; renderLoadingSvg: () => any; componentDidLoad(): void; render(): any; }