import Wheel = require('./Wheel'); export = Car; declare class Car { name: string; wheel: Wheel; static $service: string; static $args: string[]; static $inject: typeof Wheel[]; constructor(name: string, wheel: Wheel); }