/**
 * CommonJS version of Prompt Handlers for NPM package compatibility
 *
 * This file provides CommonJS-compatible versions of the prompt handlers
 * that can be used by the NPM package while maintaining the same functionality
 * as the TypeScript version.
 */
/**
 * Create prompt handlers
 */
export function createPromptHandlers(context: any): {
    'prompts/list': {
        context: any;
        handle(params: any): Promise<{
            prompts: never[];
        }>;
    };
    'prompts/get': {
        context: any;
        handle(params: any): Promise<never>;
    };
};
//# sourceMappingURL=prompt-handlers.d.cts.map