export declare type AwsCloudWatchEvent = { id: string; 'detail-type': string; source: string; account: string; time: string; region: string; resources: string[]; detail: { status?: string; input?: string; output?: string; }; }; export declare type BucketType = 'internal' | 'private' | 'protected' | 'public' | 'shared'; export declare type BucketConfig = { name: string; type: BucketType; }; export declare type BucketsConfigObject = { [key: string]: BucketConfig; }; //# sourceMappingURL=types.d.ts.map