/** * — renders the registered secrets from the framework * secrets registry. Configured keys stay compact; adding or editing one * progressively discloses its controls. */ import React from "react"; export interface SecretsSectionProps { /** Optional hash fragment to focus a specific secret (e.g. "secrets:OPENAI_API_KEY"). */ focusKey?: string; } export declare function SecretsSection({ focusKey }: SecretsSectionProps): React.JSX.Element; //# sourceMappingURL=SecretsSection.d.ts.map