import React from 'react';
import { PulseAnimationProps, PulseAnimationSize, PulseAnimationState } from './PulseAnimation.types';
/** PulseAnimation*/
declare class PulseAnimation extends React.PureComponent<PulseAnimationProps, PulseAnimationState> {
    static displayName: string;
    static defaultProps: {
        loop: boolean;
        fluid: boolean;
    };
    rootRef: React.RefObject<HTMLDivElement>;
    constructor(props: PulseAnimationProps);
    componentDidMount(): void;
    _getAnimationSize: () => PulseAnimationSize;
    render(): React.JSX.Element;
}
export default PulseAnimation;
//# sourceMappingURL=PulseAnimation.d.ts.map