/** * Link format with label and type */ export interface LinkFormat { /** Label for the link */ label: string; /** Type of the format (must be 'link') */ type: "link"; }