import { Color, ComputedNodeStyle, NodeId } from '@likec4/core/types'; type RequiredData = { id: NodeId; title: string; color: Color; style: ComputedNodeStyle; icon?: string | null; }; type CompoundTitleProps = { data: RequiredData; /** * Opt-in: hide the title from assistive technologies. The main diagram sets * this because the compound node's accessible label already conveys the * title, so re-exposing it here would cause a duplicate announcement. */ 'aria-hidden'?: boolean | undefined; }; export declare function CompoundTitle({ data, 'aria-hidden': ariaHidden }: CompoundTitleProps): import("react").JSX.Element; export {};