import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; export interface Link { id: string; slug: string; title: string; url: string; favorite: boolean; pinned: boolean; scoped: boolean; passwordProtection: boolean; visits?: number; totalVisits?: number; expiresAt?: string | null; createdAt: string; updatedAt: string; } export declare function registerLinkTools(server: McpServer): Promise;