import { IApplication } from "./IApplication";
export interface IApplicationConstructor {
    new (): IApplication;
}
