import { ClickEventState, EmphasisProps, GlobalProps, GlobalState, InitializedState, PlacementProps, PopoverProps, PopoverState } from '../../shared/model'; export declare const TooltipVariantList: readonly ["with arrow", "basic"]; export type TooltipVariantType = (typeof TooltipVariantList)[number]; export type DBTooltipDefaultProps = { variant?: TooltipVariantType; }; export type DBTooltipProps = DBTooltipDefaultProps & GlobalProps & EmphasisProps & PlacementProps & PopoverProps; export type DBTooltipDefaultState = {}; export type DBTooltipState = DBTooltipDefaultState & GlobalState & ClickEventState & PopoverState & InitializedState;