import type { ReactNode } from "react"; import '@/react-ui/blocks/Sidebar/animations/tooltip-keyframes.css'; export interface SidebarTooltipProps { /** Contenido del tooltip */ children: ReactNode; /** Título opcional del tooltip */ title?: string; /** Modo debug para visualizar safety triangle y layers */ debug?: boolean; /** Handler llamado cuando el mouse sale del tooltip */ onMouseLeave?: () => void; } export declare const SidebarTooltip: import("react").MemoExoticComponent<({ children, title, debug, onMouseLeave, }: SidebarTooltipProps) => import("react/jsx-runtime").JSX.Element>; //# sourceMappingURL=SidebarTooltip.d.ts.map