import * as React from 'react'; import { CircularProgressBarProps as CoreCircularProgressBarProps } from 'wix-ui-core/circular-progress-bar'; import { Size } from './constants'; import { Omit } from '../../types/common'; export interface CircularProgressBarProps extends Omit { /** message to display when an error happens */ errorMessage?: string; /** use light theme instead of dark theme */ light?: boolean; /** size of the bar */ size?: Size; } export declare const CircularProgressBar: React.SFC;