import * as React from 'react';
/**
* Props interface for the LoadingIcon component
*/
interface IProps {
    Show: boolean;
    Label?: string;
    Size?: number;
}
/**
* Functional component for rendering a loading icon
*/
declare const LoadingIcon: React.FunctionComponent<IProps>;
export default LoadingIcon;
