/// import { View, ViewStyle } from 'react-native'; import { HandlerRef } from './useNodesRef'; export interface ProgressProps { percent?: number; 'stroke-width'?: number | string; color?: string; activeColor?: string; backgroundColor?: string; active?: boolean; 'active-mode'?: 'backwards' | 'forwards'; duration?: number; bindactiveend?: (event: any) => void; style?: ViewStyle & Record; 'enable-offset'?: boolean; 'enable-var'?: boolean; 'external-var-context'?: Record; 'parent-font-size'?: number; 'parent-width'?: number; 'parent-height'?: number; } declare const Progress: import("react").ForwardRefExoticComponent>>; export default Progress;