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