import { Theme } from '../../theme/theme'; import type { BackgroundColorProps, ResponsiveValue } from '@shopify/restyle'; export declare type Props = BackgroundColorProps & { height?: number; innerColor?: ResponsiveValue; marginVertical?: ResponsiveValue; percent: number; text?: string; withGoal?: boolean; }; export declare const ProgressBar: ({ backgroundColor, height, innerColor, percent, withGoal, ...rest }: Props) => JSX.Element;