/**
 * Created by alexbuicescu on 19 - Mar 2018.
 */
import * as React from 'react';
import { Classes } from '../';
import { CIRCULAR_PROGRESS_SIZE } from '../utils/enums';
export interface Props {
    size?: CIRCULAR_PROGRESS_SIZE;
    style?: Classes;
}
export declare const LoadingContainer: React.ComponentType<Props>;
