import { View } from 'react-native'; import type { ProgressRootState } from '../root/ProgressRoot'; import type { ZestUIComponentProps } from '../../types'; /** * Visualizes the completion status of the task. * Renders a `` sized to the current value. * * While indeterminate, no width is applied at all — there is no value to show, * so the consumer owns that appearance entirely (an indeterminate bar is * usually an animation, which zest never runs itself; read `state.status`). */ export declare function ProgressIndicator(componentProps: ProgressIndicator.Props): import("react").ReactElement>; export interface ProgressIndicatorState extends ProgressRootState { } export interface ProgressIndicatorProps extends ZestUIComponentProps { } export declare namespace ProgressIndicator { type State = ProgressIndicatorState; type Props = ProgressIndicatorProps; } //# sourceMappingURL=ProgressIndicator.d.ts.map