/// <reference types="react" />
import './tooltip.scss';
/**
 * @specs https://m3.material.io/components/tooltips/specs
 */
export declare const RichTooltip: import("react").ForwardRefExoticComponent<{
    children?: React.ReactNode;
    subhead?: React.ReactNode;
    action?: React.ReactNode;
    onActionClick?: (() => void) | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "action" | "children" | "onActionClick" | "subhead"> & import("react").RefAttributes<HTMLDivElement>>;
