import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { SignUpRequest, SignUpResponse } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface SignUpCommandInput extends SignUpRequest {} export interface SignUpCommandOutput extends SignUpResponse, __MetadataBearer {} declare const SignUpCommand_base: { new (input: SignUpCommandInput): import("@smithy/core/client").CommandImpl< SignUpCommandInput, SignUpCommandOutput, CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new (input: SignUpCommandInput): import("@smithy/core/client").CommandImpl< SignUpCommandInput, SignUpCommandOutput, CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class SignUpCommand extends SignUpCommand_base { protected static __types: { api: { input: SignUpRequest; output: SignUpResponse; }; sdk: { input: SignUpCommandInput; output: SignUpCommandOutput; }; }; }