import { ReactNode } from 'react'; import { CategorizedListData } from '../../../common/tooltipVariants/types'; export interface UnlocksAICapsuleProps { label: string; asAnchor?: boolean; children?: ReactNode; className?: string; tooltipData?: CategorizedListData; onClick?: () => void; } export declare const UnlocksAICapsule: ({ label, asAnchor, onClick, className, children, tooltipData, }: UnlocksAICapsuleProps) => import("react/jsx-runtime").JSX.Element;