import React from 'react'
declare module 'trunghv-react-native-progress' {
    export interface Props {
        height?:number|string,
        color?:string,
        borderRadius?:number,
        backgroundColor?:string,
        width?:number|string,
        style?:object,
        progress:number
    }
    export default class Progress extends React.Component<Props>{
        constructor(props: Props)
    }
}