import { UserPoolType } from 'aws-sdk/clients/cognitoidentityserviceprovider';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
export interface RawAwsCognitoUserPool extends Omit<UserPoolType, 'UserPoolTags'> {
    region: string;
    Tags: TagMap;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [region: string]: RawAwsCognitoUserPool[];
}>;
export default _default;
