import { StackSet } from 'aws-sdk/clients/cloudformation';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
/**
 * Cloud Formation Stack Set
 */
export interface RawAwsCloudFormationStackSet extends Omit<StackSet, 'Tags'> {
    Tags: TagMap;
    region: string;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [region: string]: RawAwsCloudFormationStackSet[];
}>;
export default _default;
