import * as plugins from './plugins.js';
import type { CloudlyApiClient } from './classes.cloudlyapiclient.js';
export declare class SecretGroup implements plugins.servezoneInterfaces.data.ISecretGroup {
    cloudlyClientRef: CloudlyApiClient;
    id: string;
    data: plugins.servezoneInterfaces.data.ISecretGroup['data'];
    constructor(cloudlyClientRef: CloudlyApiClient);
    static getSecretGroupById(cloudlyClientRef: CloudlyApiClient, secretGroupIdArg: string): Promise<SecretGroup>;
    static getSecretGroups(cloudlyClientRef: CloudlyApiClient): Promise<SecretGroup[]>;
    static createSecretGroup(cloudlyClientRef: CloudlyApiClient, secretGroupDataArg: Partial<plugins.servezoneInterfaces.data.ISecretGroup['data']>): Promise<SecretGroup>;
    update(): Promise<this>;
    delete(cloudlyClientRef: CloudlyApiClient, secretGroupIdArg: string): Promise<any>;
}
