import { HTMLMotionProps } from 'framer-motion';
import { FC } from 'react';
import { RippleType } from './use-ripple.js';

interface RippleProps {
    ripples: RippleType[];
    color?: string;
    motionProps?: HTMLMotionProps<'span'>;
    style?: React.CSSProperties;
}
declare const Ripple: FC<RippleProps>;

export { RippleProps, Ripple as default };
