// Generated by dts-bundle-generator v7.2.0 import React from 'react'; import { HTMLAttributes, ReactNode } from 'react'; export interface Conditions { xs?: T; md?: T; lg?: T; xl?: T; xxl?: T; } export interface TooltipSprinkle { /** * The maxWidth property specifies the maximum width of a popover's content area. */ maxWidth?: string | Conditions; } export interface TooltipProperties extends TooltipSprinkle { /** * An HTML element, or a function that returns one. It's used to set the position of the tooltip. * @TJS-type React.ReactNode */ children: ReactNode; /** * The text that should appear in the tooltip message. */ content: string; /** * Conditional for displaying the popover arrow. * @default false */ arrow?: boolean; /** * Position of the popover. * @default bottom */ position?: "top" | "bottom" | "left" | "right"; } export type TooltipProps = TooltipProperties & HTMLAttributes; export declare const Tooltip: React.FC; export { Tooltip as default, }; export {};