import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GreengrassClient"; import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface CreateGroupCommandInput extends CreateGroupRequest {} export interface CreateGroupCommandOutput extends CreateGroupResponse, __MetadataBearer {} declare const CreateGroupCommand_base: { new ( input: CreateGroupCommandInput ): import("@smithy/core/client").CommandImpl< CreateGroupCommandInput, CreateGroupCommandOutput, GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: CreateGroupCommandInput ): import("@smithy/core/client").CommandImpl< CreateGroupCommandInput, CreateGroupCommandOutput, GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class CreateGroupCommand extends CreateGroupCommand_base { protected static __types: { api: { input: CreateGroupRequest; output: CreateGroupResponse; }; sdk: { input: CreateGroupCommandInput; output: CreateGroupCommandOutput; }; }; }