import { AllowedComponentProps, VNodeProps } from '../common' import { IconSize } from './icon' declare interface LoadingProps { size?: IconSize iconColor?: string mask?: boolean text?: string customStyle?: Record | string } declare interface LoadingSlots { default?: () => any } declare interface _Loading { new(): { $props: AllowedComponentProps & VNodeProps & LoadingProps $slots: LoadingSlots } } export declare const Loading: _Loading export default Loading export type { LoadingProps, LoadingSlots }