import { PropsWithChildren } from 'react'; import { type TooltipProps } from './Tooltip.types'; /** * 툴팁의 루트 컴포넌트입니다. * CSS 기반 hover와 focus로 동작합니다. * * @param {TooltipProps} props - 툴팁 컴포넌트의 프로퍼티 * @param {string} props.className - 툴팁 컴포넌트의 클래스 이름 * * @example * * * * * * */ declare const Tooltip: { ({ children, className }: TooltipProps): import("react/jsx-runtime").JSX.Element; Trigger: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; Plain: ({ id, text, variant, className, }: import("./Tooltip.types").TooltipPlainProps) => import("react/jsx-runtime").JSX.Element; Rich: ({ id, title, description, variant, className, children, }: import("./Tooltip.types").TooltipRichProps) => import("react/jsx-runtime").JSX.Element; }; export { Tooltip };