import { PureComponent } from 'react';
import { ViewStyle } from 'react-native';
export declare type CircleProps = {
    size: number;
    color?: string;
    borderColor?: string;
    borderWidth?: number;
    style?: ViewStyle;
};
export declare class Circle extends PureComponent<CircleProps> {
    static defaultProps: {
        color: string;
        size: number;
        style: {};
        borderColor: string;
        borderWidth: number;
    };
    render(): JSX.Element;
}
