export interface ClipboardEntry { id: number; content: string; content_type: "text" | "image" | "file"; created_at: string; pinned: boolean; content_hash: string; } export interface Settings { launch_at_login: boolean; show_images: boolean; max_history: number; }