/**
 * CommonJS version of Completion Handlers for NPM package compatibility
 *
 * This file provides CommonJS-compatible versions of the completion handlers
 * that can be used by the NPM package while maintaining the same functionality
 * as the TypeScript version.
 */
/**
 * Create completion handlers
 */
export function createCompletionHandlers(context: any): {
    'completion/complete': {
        context: any;
        handle(params: any): Promise<{
            completion: {
                values: never[];
                total: number;
                hasMore: boolean;
            };
        }>;
    };
};
//# sourceMappingURL=completion-handlers.d.cts.map