/**
* Props interface for the LoadingIcon component
*/
interface IProps {
    Show: boolean;
    Label?: string;
    Size?: number;
}
/**
* Functional component for rendering a loading icon
*/
declare const LoadingIcon: (props: IProps) => JSX.Element;
export default LoadingIcon;
