import type * as ts from 'typescript'; import { Entity } from '../Entity'; import { CType } from '../type-system/CType'; export declare class Dependency extends Entity { parameterName: string; private _cType; get cType(): CType; set cType(cType: CType); }