import * as React from 'react'; import { Theme } from '../../styles'; import { ParticleProps } from './ParticleProps'; export type MDRippleParticleOptions = { theme: Theme; color: string; }; declare class Particle extends React.PureComponent, Record> { private animatedScale; private animatedOpacity; private animatedStyle; private runningAnimation; componentWillMount(): void; componentDidMount(): void; componentWillReceiveProps(newProps: ParticleProps): void; render(): import("react/jsx-runtime").JSX.Element; private get radiusFrom(); private get radiusTo(); private onAnimateRadiusEnd; private fadeOut; } export default Particle;