import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface AttributeLabelInfoProps extends Omit, 'children'> { ref?: Ref; /** Tooltip content */ children: ReactNode; } export declare const AttributeLabelInfo: FC;