export declare const FactoryService = "factory"; export declare const FactoryProvider: { provide: string; useFactory(): { message: string; }; }; export declare const AsyncFactoryService = "factory"; export declare const AsyncFactoryProvider: { provide: string; useFactory(): { message: string; }; }; export declare class FactoryController { private factory; private async_factory; constructor(factory: any, async_factory: any); view(): any; asyncView(): any; }