import { ClassValue } from "clsx"; interface Props { /** * Weather or not to emit the ripple from the center of the element * @default false */ emitFromCenter: boolean; /** * Custom class overrides */ className?: ClassValue; } export declare function Ripple({ emitFromCenter, className }: Partial): JSX.Element; export {};