import { BehaviorAction } from '../types'; interface TooltipActionValue { content?: string; triggerType?: 'click' | 'hover'; } interface TooltipActionOptions { id: string; } export declare const tooltipBehaviorAction: BehaviorAction; export {};