import type { CSS } from "../theme/stitches.config"; import React, { MutableRefObject } from "react"; import { Placement } from "../utils/prop-types"; import { TooltipContentVariantsProps } from "./tooltip.styles"; interface Props { placement?: Placement; visible?: boolean; offset?: number; parent?: MutableRefObject | undefined; animated?: boolean; rounded?: boolean; hideArrow?: boolean; className?: string; css?: CSS; children?: React.ReactNode; } declare const defaultProps: { placement: "top" | "topStart" | "topEnd" | "left" | "leftStart" | "leftEnd" | "bottom" | "bottomStart" | "bottomEnd" | "right" | "rightStart" | "rightEnd"; offset: number; className: string; }; export declare type TooltipContentProps = Props & typeof defaultProps & TooltipContentVariantsProps; declare const _default: React.ComponentType & Omit>; export default _default;