import { CtorTyped } from "ajsfw/types";
import { IViewComponent } from "./IViewComponent";
export interface IViewComponentDependencies {
    viewComponentCtor: CtorTyped<IViewComponent>;
    dependencies: any[];
}
