import { Style, StyleColor } from "../StyleSheet/StyleSheet"; import { BaseView } from "./BaseView"; import { ViewProps } from "./View"; interface ActivityIndicatorProps extends ViewProps { color: StyleColor; size?: "medium" | "large" | null; } export declare class ActivityIndicator extends BaseView { private viewRef; style(style: Style): void; render(): any; } export {};