import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ReportDeliveryChannel { S3KeyPrefix?: Value; Formats?: List>; S3BucketName: Value; constructor(properties: ReportDeliveryChannel); } export declare class ReportSetting { FrameworkArns?: List>; ReportTemplate: Value; OrganizationUnits?: List>; Regions?: List>; Accounts?: List>; constructor(properties: ReportSetting); } export interface ReportPlanProperties { ReportSetting: ReportSetting; ReportPlanDescription?: Value; ReportPlanName?: Value; ReportDeliveryChannel: ReportDeliveryChannel; ReportPlanTags?: List; } export default class ReportPlan extends ResourceBase { static ReportDeliveryChannel: typeof ReportDeliveryChannel; static ReportSetting: typeof ReportSetting; constructor(properties: ReportPlanProperties); }