import { ProgressBase, valueProperty, maxValueProperty } from './progress-common';
import { Color } from '../../color';
import { colorProperty, backgroundColorProperty, backgroundInternalProperty } from '../styling/style-properties';
export * from './progress-common';
export declare class Progress extends ProgressBase {
    [valueProperty.getDefault]: () => number;
    [valueProperty.setNative]: (value: number) => void;
    [maxValueProperty.getDefault]: () => number;
    [maxValueProperty.setNative]: (value: number) => void;
    [colorProperty.getDefault]: () => UIColor;
    [colorProperty.setNative]: (value: Color | UIColor) => void;
    [backgroundColorProperty.getDefault]: () => UIColor;
    [backgroundColorProperty.setNative]: (value: UIColor | Color) => void;
    [backgroundInternalProperty.getDefault]: () => UIColor;
    [backgroundInternalProperty.setNative]: (value: Color) => void;
    nativeViewProtected: UIProgressView;
    createNativeView(): UIProgressView;
    get ios(): UIProgressView;
}
