import React from 'react'; import { ViewStyle, TextStyle, StyleProp } from 'react-native'; import { type SpacingProps } from '../../../theme/spacing'; import { type TestableProps } from '../../common/test'; import { type BoxProps } from '../../common/box'; import { type ShadowProps } from '../../common/shadow'; export type ProgressVariant = 'linear' | 'circular'; export type ProgressColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | 'text' | 'subtext' | 'border' | 'divider' | string; export interface ProgressProps extends SpacingProps, TestableProps, BoxProps, ShadowProps { variant?: ProgressVariant; value?: number; indeterminate?: boolean; color?: ProgressColor; trackColor?: ProgressColor; thickness?: number; size?: 'small' | 'medium' | 'large' | number; showLabel?: boolean; label?: string | React.ReactNode; style?: StyleProp; textStyle?: StyleProp; } declare const Progress: React.FC; export default Progress; export { Progress }; //# sourceMappingURL=Progress.d.ts.map