import React from 'react';
export default function RippleWrapper({ children, className, isEnable, color, fullWidth, ...rest }: React.HTMLAttributes<HTMLDivElement> & {
    isEnable?: boolean;
    fullWidth?: boolean;
}): import("react/jsx-runtime").JSX.Element;
