import { type DefaultProps } from '../config'; export interface LoadingProps { type?: 'clock' | 'circular'; color?: string; size?: string; text?: string; textColor?: string; textSize?: string; vertical?: boolean; animated?: boolean; progress?: number; } export declare const defaultLoadingProps: DefaultProps; export interface LoadingSlots { default?(props: Record): any; circular?(props: Record): any; }