import type { JSONSchema7 } from 'json-schema';
export declare type McpTool = {
    name: string;
    description?: string;
    inputSchema: JSONSchema7;
};
export declare type McpToolIncludeMode = 'all' | 'selected' | 'except';
export declare type McpAuthenticationOption = 'none' | 'headerAuth' | 'bearerAuth';
