import { PureComponent } from 'react';
export interface IPlaceholderBaseShapeProps {
    className?: string;
    style?: React.CSSProperties;
    animate?: boolean;
}
export default class Base extends PureComponent<IPlaceholderBaseShapeProps> {
    static defaultProps: {
        style: {};
        animate: boolean;
    };
    render(): JSX.Element;
}
