import React from 'react';
import { CSS } from '../../Theme';
declare const FullPageProgress: ({ loaderColor, text, css, }: {
    loaderColor?: string | undefined;
    text?: string | undefined;
    css?: CSS | undefined;
}) => React.JSX.Element;
export default FullPageProgress;
