import HdgElement from "@hdgd/core"; export interface Props { type?: "circular" | "spinner"; color?: string; size?: string | number; vertical?: boolean; } declare class HdgLoading extends HdgElement { constructor(); type: "spinner" | "circular" | "pullrefresh"; vertical: boolean; color: string | undefined; size: string | undefined; getFontSize(): string; renderLoadingSvg: () => any; render(): any; } export default HdgLoading;