import { Color } from '@ionic/core'; /** * Link configuration object. * @type {LinkMetadata} * @property text - The link text. * @property color - The button color (Ionic color string). * @property link - The URL or route to navigate to. * @property type - The navigation type ('internal', 'browse', 'tab'). * @property token - Optional token for event identification. * @property size - The button size (optional). */ export interface LinkMetadata { token?: string; text: string; size: 'small' | 'default' | 'large'; color: Color; type: 'internal' | 'tab' | 'browse'; link: string; }