import { BoatConfig } from './boat-config'; /** * Boat * @description The parent decorator that wraps all of your project dependencies * @param config {BoatConfig} arrays of dependencies used by your project * @param config.middlewares {Array} array of your express middlewares in the order that you need them * @param config.features {Array} array of each of the features you declare * @returns decorator {ClassDecorator} to decorate your AppModule class */ export declare function Boat(config: BoatConfig): ClassDecorator;