import React from 'react'; declare type Props = { /** * Adjusts width and height */ size?: number | string; /** * Color of Loader */ color?: string; }; declare type LoadingProps = Props & React.SVGProps; export declare const Loading: ({ size, color, ...props }: LoadingProps) => React.JSX.Element; export {};