import { FetchSecretsResponse } from '../types/Secrets.js'; import { HubSpotPromise } from '../types/Http.js'; export declare function addSecret(accountId: number, key: string, value: string): HubSpotPromise; export declare function updateSecret(accountId: number, key: string, value: string): HubSpotPromise; export declare function deleteSecret(accountId: number, key: string): HubSpotPromise; export declare function fetchSecrets(accountId: number): HubSpotPromise;