import { type PropType, type StyleValue } from 'vue'; export interface LoadingProps { rootStyle?: StyleValue; rootClass?: string; type?: 'clock' | 'circular'; color?: string; size?: string; text?: string; textColor?: string; textSize?: string; vertical?: boolean; } export declare const loadingProps: { rootStyle: PropType; rootClass: StringConstructor; type: { type: PropType<"circular" | "clock" | undefined>; default: string; }; color: StringConstructor; size: StringConstructor; text: StringConstructor; textColor: StringConstructor; textSize: StringConstructor; vertical: BooleanConstructor; }; export interface LoadingSlots { default(props: Record): any; }