/// <reference types="react" />
export declare const Ripple: import("react").ForwardRefExoticComponent<{
    /**
     * HTML tag name, div by default
     */
    as?: keyof JSX.IntrinsicElements | undefined;
    children?: React.ReactNode;
    disabled?: boolean | undefined;
    /**
     * In ms
     */
    rippleDuration?: number | undefined;
    /**
     * Any css color string
     */
    rippleColor?: string | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "as" | "disabled" | "children" | "rippleDuration" | "rippleColor"> & import("react").RefAttributes<HTMLElement>>;
