import { type CompanionContainerDefinition } from '@appsemble/lang-sdk'; /** * Creates or updates secret. * Secret resource is named after the app name + id, where whitespace * is replaced by '-'. * * @param secretName Key of the secret to be created * @param value The secret value * @param appName Name of the app * @param appId Id of the app. */ export declare function updateNamespacedSecret(secretName: string, value: string, appName: string, appId: string): Promise; export declare function deleteSecret(appName: string, appId: string, key?: string): Promise; export declare function deleteCompanionContainers(serviceName: string): Promise; export declare function updateCompanionContainers(definitions: CompanionContainerDefinition[], appName: string, appId: string, registry?: string): Promise;