import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class Repository { PathComponent: Value; RepositoryUrl: Value; constructor(properties: Repository); } export interface EnvironmentEC2Properties { Repositories?: List; OwnerArn?: Value; Description?: Value; AutomaticStopTimeMinutes?: Value; SubnetId?: Value; InstanceType: Value; Name?: Value; } export default class EnvironmentEC2 extends ResourceBase { static Repository: typeof Repository; constructor(properties: EnvironmentEC2Properties); }