import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class OrganizationAggregationSource { AllAwsRegions?: Value; AwsRegions?: List>; RoleArn: Value; constructor(properties: OrganizationAggregationSource); } export declare class AccountAggregationSource { AllAwsRegions?: Value; AwsRegions?: List>; AccountIds: List>; constructor(properties: AccountAggregationSource); } export interface ConfigurationAggregatorProperties { AccountAggregationSources?: List; ConfigurationAggregatorName: Value; OrganizationAggregationSource?: OrganizationAggregationSource; } export default class ConfigurationAggregator extends ResourceBase { static OrganizationAggregationSource: typeof OrganizationAggregationSource; static AccountAggregationSource: typeof AccountAggregationSource; constructor(properties: ConfigurationAggregatorProperties); }