import * as Aws from "./aws-base"; import AWS_CongitoIdentityServiceProvider from "aws-sdk/clients/cognitoidentityserviceprovider"; export interface Opts extends Aws.Opts { poolId: string; } export interface UserAttrib { attribute: string; value: string; } export declare class CognitoUserPool extends Aws.Base { private _poolId; private _userPool; constructor(name: string, opts: Opts); start(): Promise; stop(): Promise; healthCheck(): Promise; getUsers( paginationToken?: string, ): Promise; createUser(userName: string, userAtribs: UserAttrib[]): Promise; deleteUser(userName: string): Promise; changeUserPassword(userName: string, password: string): Promise; }