/** * Base interface for all link elements */ export interface LinkElement { id: string; type: string; createdAt: Date; updatedAt: Date; url?: string; } /** * Configuration options for link elements */ export interface LinkElementConfig { id?: string; type: string; url?: string; [key: string]: unknown; }