/**
 * Digital Samba MCP Server - Recording Resources
 *
 * This module implements resources for accessing Digital Samba room recordings.
 * It provides MCP resources for listing and retrieving recording information.
 *
 * Resources provided:
 * - recordings: List all recordings
 * - recording: Get specific recording details
 * - room-recordings: List recordings for a specific room
 * - archived-recordings: List archived recordings
 *
 * @module resources/recordings
 * @author Digital Samba Team
 * @version 1.0.0
 */
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
 * Set up recording resources for the MCP server
 *
 * This function registers all recording-related resources with the MCP server.
 * Resources are read-only endpoints that provide access to recording data.
 *
 * @param {McpServer} server - The MCP server instance
 * @param {string} apiUrl - Base URL for the Digital Samba API
 * @returns {void}
 */
export declare function setupRecordingResources(server: McpServer, apiUrl: string): void;
//# sourceMappingURL=index.d.ts.map