import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ReportExportConfig { S3Destination?: S3ReportExportConfig; ExportConfigType: Value; constructor(properties: ReportExportConfig); } export declare class S3ReportExportConfig { Path?: Value; Bucket: Value; Packaging?: Value; EncryptionKey?: Value; BucketOwner?: Value; EncryptionDisabled?: Value; constructor(properties: S3ReportExportConfig); } export interface ReportGroupProperties { Type: Value; ExportConfig: ReportExportConfig; DeleteReports?: Value; Tags?: List; Name?: Value; } export default class ReportGroup extends ResourceBase { static ReportExportConfig: typeof ReportExportConfig; static S3ReportExportConfig: typeof S3ReportExportConfig; constructor(properties: ReportGroupProperties); }