import { View } from 'react-native'; import type { MeterRootState } from '../root/MeterRoot'; import type { ZestUIComponentProps } from '../../types'; /** * Visualizes the current value. * Renders a `` sized to the value's position in the range. */ export declare function MeterIndicator(componentProps: MeterIndicator.Props): import("react").ReactElement>; export interface MeterIndicatorState extends MeterRootState { } export interface MeterIndicatorProps extends ZestUIComponentProps { } export declare namespace MeterIndicator { type State = MeterIndicatorState; type Props = MeterIndicatorProps; } //# sourceMappingURL=MeterIndicator.d.ts.map