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