import { IdentityPool, GetIdentityPoolRolesResponse } from 'aws-sdk/clients/cognitoidentity';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
export interface RawAwsCognitoIdentityPool extends Omit<IdentityPool, 'IdentityPoolTags'> {
    identityPoolRoles: GetIdentityPoolRolesResponse;
    region: string;
    Tags: TagMap;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [region: string]: RawAwsCognitoIdentityPool[];
}>;
export default _default;
