import * as factory from '../factory'; import { ISearchResult, Service } from '../service'; /** * Cognitoユーザープールサービス */ export declare class UserPoolService extends Service { /** * ユーザープール取得 */ findById(params: { userPoolId: string; }): Promise; /** * クライアント検索 */ searchClients(params: { userPoolId: string; }): Promise>; /** * クライアント取得 */ findClientById(params: { userPoolId: string; clientId: string; }): Promise; }