import { ColorValue, StyleProp, ViewStyle } from 'react-native';
import React from 'react';
export interface CircleStyleProps {
    fill?: ColorValue;
    stroke?: ColorValue;
    strokeWidth?: number;
}
export interface PolygonStyleProps {
    fill?: ColorValue;
    stroke?: ColorValue;
    strokeWidth?: number;
}
export interface PlayCircleProps {
    size?: number;
    viewStyle?: StyleProp<ViewStyle>;
    circleStyle?: CircleStyleProps;
    polygonStyle?: PolygonStyleProps;
}
declare const PlayCircle: ({ size, viewStyle, circleStyle, polygonStyle, }: PlayCircleProps) => React.JSX.Element;
export default PlayCircle;
//# sourceMappingURL=PlayCircle.d.ts.map