///
import * as React from 'react';
export interface RippleProps {
prefixCls?: string;
}
export default class Ripple extends React.Component {
static defaultProps: {
prefixCls: string;
};
render(): JSX.Element[] | null | undefined;
rippleChild: (child: React.ReactChild) => JSX.Element;
}