import { FC, CSSProperties, ReactNode, RefObject } from "react";
import { PointerDirection, TooltipType } from "./types";
export type TooltipContentProps = {
    id?: string;
    type?: TooltipType;
    style?: CSSProperties;
    pointer?: PointerDirection;
    showCloseButton?: boolean;
    a11yCloseText?: string;
    ariaLabelledBy?: string;
    onClose?: () => void;
    children?: ReactNode;
    overlayRef?: (node: HTMLElement | null) => void;
    arrowRef?: RefObject<HTMLElement>;
    arrowStyle?: CSSProperties;
};
declare const TooltipContent: FC<TooltipContentProps>;
export default TooltipContent;
//# sourceMappingURL=tooltip-content.d.ts.map