/// <reference types="react" />
import NProgress from 'nprogress';
interface NProgressContainerProps {
    /**
     * Refers to a color found in the theme eg. 'primary', 'secondary',
     * or any valid css color eg. "#fff"
     */
    color: string;
    /** Display a spinner with the loading bar */
    withSpinner?: boolean;
    /** nprogress [configuration object](https://github.com/rstacruz/nprogress#configuration) */
    options?: NProgress.NProgressOptions;
}
/**
 * Theme aware drop in NProgress component.
 */
declare const NProgressContainer: {
    ({ color, withSpinner, options, }: NProgressContainerProps): JSX.Element;
    defaultProps: {
        color: string;
    };
};
export default NProgressContainer;
