import { HrefMetadata } from '../../atoms/href/types'; /** * Props for val-links-cake component. * * @property title - The title for the links section (optional). * @property links - Array of link configurations. * @property size - The size of the title and links ('small' | 'medium' | 'large'). */ export interface LinkCakeMetadata { title: string; links: HrefMetadata[]; size: 'small' | 'medium' | 'large'; }