import { RegionType, CapiCredentials } from './../interface'; import { Capi } from '@tencent-sdk/capi'; import { VpcDeployInputs, VpcRemoveInputs, VpcOutputs } from './interface'; import TagClient from '../tag'; export default class Vpc { region: RegionType; credentials: CapiCredentials; capi: Capi; tagClient: TagClient; constructor(credentials?: CapiCredentials, region?: RegionType); deploy(inputs: VpcDeployInputs): Promise; remove(inputs: VpcRemoveInputs): Promise<{}>; }