/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ /** * CLI / form input for storing a credential (key, secret, optional metadata). */ export declare const CredentialPutInputSchema: { readonly type: "object"; readonly properties: { readonly key: { readonly type: "string"; readonly title: "Key"; readonly description: 'Unique identifier (e.g. "openai-api-key")'; }; readonly value: { readonly type: "string"; readonly title: "Value"; readonly description: "Secret value (API key, token, or password)"; readonly format: "password"; }; readonly label: { readonly type: "string"; readonly title: "Label"; readonly description: "Human-readable label (optional)"; }; readonly provider: { readonly type: "string"; readonly title: "Provider"; readonly description: "Optional provider this credential is associated with"; readonly enum: readonly ["none", "anthropic", "openai", "google", "huggingface", "custom"]; }; }; readonly required: readonly ["key", "value"]; }; //# sourceMappingURL=CredentialPutInputSchema.d.ts.map