import { Cluster } from 'aws-sdk/clients/redshift';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
/**
 * Redshift
 */
export interface RawAwsRedshiftCluster extends Omit<Cluster, 'Tags'> {
    Tags?: TagMap;
    region: string;
}
declare const _default: ({ regions, config, }: {
    regions: string;
    config: Config;
}) => Promise<{
    [property: string]: RawAwsRedshiftCluster[];
}>;
export default _default;
