import * as React from 'react'; export interface IRippleProps { color?: string; ms?: number; } export interface IRippleState { } export declare class Ripple extends React.Component { static defaultProps: { color: string; ms: number; }; el: HTMLElement; elRipple: HTMLDivElement; ref: (originalRef: any) => (el: any) => void; refRipple: (el: any) => void; onMouseDown: (originalMouseDown: any) => (event: any) => void; render(): React.ReactElement; } export declare const withRipple: (tag: string, rippleProps?: any) => (props: any) => React.ComponentElement;