import * as React from 'react'; import ProgressProps from './ProgressPropsType'; export default class Progress extends React.Component { static propTypes: { percent: React.Requireable; position: React.Requireable; unfilled: React.Requireable; }; static defaultProps: { percent: number; position: string; unfilled: string; }; constructor(props: any); onLayout: (e: any) => void; render(): JSX.Element; }