import { ViewStyle } from "react-native"; import { Color } from "../../types"; export interface ProgressBarProps { animationDuration?: number; backgroundColor?: Color; height?: number; onCompletion?: () => void; progress: number; trackColor?: Color; style?: ViewStyle; progressBarStyle?: ViewStyle; } export declare const ProgressBar: ({ animationDuration, backgroundColor, height, onCompletion, progress: unclampedProgress, trackColor, style, progressBarStyle, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;