import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; export interface Bin { id: string; slug: string; title: string; language: string; content: string; favorite: boolean; pinned: boolean; locked: boolean; visibility: 'private' | 'public'; createdAt: Date; updatedAt: Date; } export declare function registerBinTools(server: McpServer): Promise;