export interface AnthropicInputSchemaBuild { type: "object"; properties?: Record | null; required?: Array | null; } export declare class AnthropicInputSchemaBuilder { private propertiesValue; private requiredValue; property(name: string, schema: unknown): this; required(...names: string[]): this; build(): AnthropicInputSchemaBuild; } //# sourceMappingURL=anthropic-inputSchema.builder.d.ts.map