import type { Placement } from '@floating-ui/core'; import type { ComponentProps, FC, PropsWithChildren, ReactNode } from 'react'; import type { FlowbiteFloatingTheme } from '../../../components/ui/Floating'; export type FlowbiteTooltipTheme = FlowbiteFloatingTheme; export interface TooltipProps extends PropsWithChildren, 'content' | 'style'>> { animation?: false | `duration-${number}`; arrow?: boolean; content: ReactNode; placement?: 'auto' | Placement; style?: 'dark' | 'light' | 'auto'; trigger?: 'hover' | 'click'; } /** * @see https://floating-ui.com/docs/react-dom-interactions */ export declare const Tooltip: FC;