import { Text } from 'react-native'; import type { ProgressRootState } from '../root/ProgressRoot'; import type { ZestUIComponentProps } from '../../types'; /** * A text element displaying the current value. * Renders a ``. * * Hidden from assistive technology: `Progress.Root` already announces the value * through its `accessibilityValue`, so reading this too would duplicate it. */ export declare function ProgressValue(componentProps: ProgressValue.Props): import("react").ReactElement>; export interface ProgressValueState extends ProgressRootState { } export interface ProgressValueProps extends Omit, 'children'> { children?: React.ReactNode | ((formattedValue: string, value: number | null) => React.ReactNode); } export declare namespace ProgressValue { type State = ProgressValueState; type Props = ProgressValueProps; } //# sourceMappingURL=ProgressValue.d.ts.map