import { QuarkElement } from "quarkc"; export interface Props { type?: "circular" | "spinner"; color?: string; size?: string | number; vertical?: boolean; } declare class QuarkLoading extends QuarkElement { type: "spinner" | "circular" | "pullrefresh"; vertical: boolean; color?: string; size: string; rotate: number; getFontSize(): string; iconRotate(): void; renderLoadingSvg: () => any; componentDidMount(): void; render(): any; } export default QuarkLoading;