import { Props as TooltipProps } from "./Tooltip";
type Props = Omit<TooltipProps, "children"> & {
    color?: "danger" | "warning" | "success" | "subdued";
    icon?: React.ReactNode;
};
export declare const VuiInfoTooltip: (props: Props) => import("react/jsx-runtime").JSX.Element;
export {};
