import { PureComponent } from 'react';
import { IPlaceholderBaseShapeProps } from './Base';
export interface IPlaceholderCicleProps extends IPlaceholderBaseShapeProps {
    diameter?: number;
}
export default class Circle extends PureComponent<IPlaceholderCicleProps> {
    static defaultProps: {
        style: {};
        animate: boolean;
        diameter: number;
    };
    render(): JSX.Element;
}
