import React, { CSSProperties } from "react"; export default class Ripple extends React.PureComponent { static displayName: string; static defaultProps: { active: boolean; className: string; color: string; display: string; during: number; }; private boxStyle; constructor(props: IRipplesProps); render(): React.JSX.Element; private onClick; } export interface IRipplesProps { active?: boolean; during?: number; display?: string; color?: string; className?: string; children?: React.ReactNode; onClick?: (event: React.MouseEvent) => void; } type IRippleState = Readonly<{ rippleStyle: CSSProperties; }>; export {};