export interface DeepSeekToolParam { type: "object"; properties: Record; required: string[]; } export declare class DeepSeekToolParametersBuilder { private propertiesValue; private requiredValue; property(name: string, schema: unknown): this; required(...names: string[]): this; build(): DeepSeekToolParam; } //# sourceMappingURL=deepseek-toolParameters.builder.d.ts.map