import React from "react"; import { ViewProps } from "react-native"; import { ProgressStatus } from "./types"; export type ProgressStatusIndicatorProps = { size: number; status: ProgressStatus; } & ViewProps; export declare const ProgressStatusIndicator: ({ status, size, ...viewProps }: ProgressStatusIndicatorProps) => React.JSX.Element;