/// <reference types="react" />
/**
 * This component is a replacement for <IconButton> when you want the element
 * only take space of the icon but not for the ripple
 * This component has ref forwarded.
 */
export declare const IconRippleButton: import("react").ForwardRefExoticComponent<{
    path?: string | undefined;
    children?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "children" | "path"> & import("react").RefAttributes<HTMLDivElement>>;
