import React from 'react';
import { iCenteredProps } from './centered';
export interface iLoadingProps extends iCenteredProps {
    dark?: boolean;
    label?: string;
}
export declare const Loading: React.FunctionComponent<iLoadingProps>;
