/** * Expandable text configuration object. * @type {ExpandableTextInput} * @property content - The text content to display. * @property limit - The character limit before truncation. * @property color - The color for the "see more" link. * @property expandText - The text for the expand link (optional). */ export interface ExpandableTextInput { limit: number; content: string; color?: string; expandText?: string; }