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