import type { DeepSeekToolParameters } from "../../types-providers/types.deepseek.js"; export interface DeepSeekToolBuild { type: "function"; function: { name: string; description: string; parameters?: DeepSeekToolParameters; }; strict: boolean; } export declare class DeepSeekToolBuilder { private nameValue; private descriptionValue; private parametersValue?; private strictValue; name(name: string): this; description(description: string): this; parameters(parameters: DeepSeekToolParameters): this; strict(strict: boolean): this; build(): DeepSeekToolBuild; } //# sourceMappingURL=deepseek-tool.builder.d.ts.map