import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class Content { S3ObjectVersion?: Value; S3Bucket: Value; S3Key: Value; constructor(properties: Content); } export interface LayerVersionProperties { CompatibleRuntimes?: List>; LicenseInfo?: Value; Description?: Value; LayerName?: Value; Content: Content; CompatibleArchitectures?: List>; } export default class LayerVersion extends ResourceBase { static Content: typeof Content; constructor(properties: LayerVersionProperties); }