import { ActivityIndicatorBase, busyProperty } from './activity-indicator-common';
import { CoreTypes } from '../../core-types';
import { Color } from '../../color';
import { colorProperty, visibilityProperty } from '../styling/style-properties';
export * from './activity-indicator-common';
export declare class ActivityIndicator extends ActivityIndicatorBase {
    [busyProperty.getDefault]: () => boolean;
    [busyProperty.setNative]: (value: boolean) => void;
    [visibilityProperty.getDefault]: () => CoreTypes.VisibilityType;
    [visibilityProperty.setNative]: (value: CoreTypes.VisibilityType) => void;
    [colorProperty.getDefault]: () => number;
    [colorProperty.setNative]: (value: number | Color) => void;
    nativeViewProtected: android.widget.ProgressBar;
    createNativeView(): globalAndroid.widget.ProgressBar;
}
