import * as React from 'react'; import { LinearProgressBarProps as CoreLinearProgressBarProps } from 'wix-ui-core/linear-progress-bar'; import { Omit } from '../../types/common'; export interface LinearProgressBarProps extends Omit { /** message to display when an error happens */ errorMessage?: string; /** use light theme instead of dark theme */ light?: boolean; } export declare const LinearProgressBar: React.SFC;