/** * Parameter Predictor * * Utility for predicting parameter values based on parameter name, type, and context. * Used by usage tips generator to provide smart examples. */ export declare class ParameterPredictor { predictValue(paramName: string, paramType: string, toolContext: string, description?: string, toolName?: string): any; private predictStringValue; private predictNumberValue; private predictBooleanValue; private predictArrayValue; private predictObjectValue; private getDefaultForType; } //# sourceMappingURL=parameter-predictor.d.ts.map