import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { IPromptResponse, Tags } from '../../types';
export declare const registerManageConferenceParticipant: (server: McpServer, tags: Tags[]) => void;
export declare const manageConferenceParticipantHandler: ({ conferenceId, participantId, action }: {
    conferenceId: string;
    participantId: string;
    action: "mute" | "unmute" | "onhold" | "resume";
}) => Promise<IPromptResponse>;
