import React from 'react'; export interface LoadingContainerProps { loading: boolean; className?: string; children?: React.ReactElement | React.ReactElement[]; } export default function LoadingContainer(props: LoadingContainerProps): JSX.Element;