import React from 'react'; import { NormalSizes, NormalTypes } from '../utils/prop-types'; interface Props { size?: NormalSizes; type?: NormalTypes; color?: string; } declare const defaultProps: { size: "mini" | "small" | "medium" | "large"; type: "default" | "secondary" | "success" | "warning" | "error"; }; type NativeAttrs = Omit, keyof Props>; export type LoadingProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "type" | "size">>; export default _default;