import * as React from "react"; import { BaseTooltipProps } from "./Tooltip"; import { Direction } from "../../dropdownable/components/Dropdownable"; export interface TooltipContentProps extends BaseTooltipProps { /** * Set a direction for the tooltip to open toward */ direction?: Direction; /** * Controls if opened by default */ isOpen: boolean; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const _default: ({ direction, children, id, maxWidth, minWidth, isOpen, className, "data-cy": dataCy }: TooltipContentProps) => React.JSX.Element; export default _default;