import "reflect-metadata"; import { IServerOptions } from "../interfaces/IServerOptions"; export type BootFunc = (options: IServerOptions) => void; export declare const boot: (options: IServerOptions, onStart?: BootFunc) => Promise; export declare const bootOnly: (options: IServerOptions, onSetup: BootFunc, onStart?: BootFunc) => Promise; //# sourceMappingURL=bootHandler.d.ts.map