import React from 'react';
import type { SpinnerSizeType } from '../types';
interface LoadingContainerProps {
    children: React.ReactNode;
    isLoading?: boolean;
    spinnerSize?: SpinnerSizeType;
    contentsOpacity: number;
    testId?: string;
    loadingLabel?: string;
}
export default class LoadingContainer extends React.Component<LoadingContainerProps> {
    static defaultProps: {
        isLoading: boolean;
        spinnerSize: string;
        contentsOpacity: number;
        loadingLabel: string;
    };
    render(): React.JSX.Element;
}
export {};
