/// <reference types="react" />
import { ViewProps } from 'react-native';
declare type PositionType = 'fixed' | 'relative';
export interface ProgressProps extends ViewProps {
    /** 当前进度百分比， 0 - 100, 默认0 */
    progress?: number;
    /** 颜色 */
    progressColor?: string;
    /** 位置 */
    position?: PositionType;
    /** 动画持续的时间 */
    animation?: {
        duration?: number;
    } | boolean;
    /** 图标源 */
    xml?: string;
    /** 是否展示图标 */
    iconShow?: boolean;
    /** 图标尺寸 */
    size?: number;
    /** 是否展示进度提示字 */
    progressShow?: boolean;
}
declare const _default: (props: ProgressProps) => JSX.Element;
export default _default;
