import { AppMasterEndpoint } from "../am-server"; import { AppMasterType, AppMasterConfig } from "./types"; export interface AppMaster extends AppMasterType { } export declare class AppMaster { get routes(): AppMasterEndpoint[]; start(): Promise; monitor(): Promise; constructor(config: AppMasterConfig); } export default AppMaster;