export interface IconLoadingAction { name?: string; action?: any; } export interface IconLoadingProps { /** Size of icon */ size?: number; /** Color of icon */ color?: string; } declare function IconLoading(props: IconLoadingProps): import("react/jsx-runtime").JSX.Element; export default IconLoading;