import React from 'react'; import { type ITooltip, type PlacesType } from 'react-tooltip'; export declare const DEFAULT_TOOLTIP_ID = "default-tooltip-id"; interface TooltipProps<_C extends React.ElementType> { /** * The id of the tooltip */ id?: string; /** * The side of the tooltip */ side?: PlacesType; /** * The label of the tooltip */ label?: string; /** * Polymorphic prop to change the html root element of the component */ as?: string; } type Props = TooltipProps & Omit, keyof TooltipProps>; export declare const Tooltip: ({ children, id, side, label, as, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export declare const TooltipContainer: (props: ITooltip & { animated?: boolean; }) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Tooltip.d.ts.map