import React from "react"; import { ViewProps } from "react-native"; import { ProgressIndicatorProps } from "./types"; export type CircularProgressProps = { /** * Diameter of the circle. */ size?: number; /** * Color theme of the indicator. */ color?: "neutral" | "primary"; } & ProgressIndicatorProps & ViewProps; export declare const CircularProgress: { ({ color, value, size, ...rest }: CircularProgressProps): React.JSX.Element; displayName: string; };