import BaseDataBridgeCommand from './base.js'; /** * Starts the DataBridge API server using the dev script from package.json */ export default class Serve extends BaseDataBridgeCommand { static hidden: boolean; static description: string; static examples: string[]; static flags: { port: import("@oclif/core/interfaces").OptionFlag; host: import("@oclif/core/interfaces").OptionFlag; verbose: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; } //# sourceMappingURL=serve.d.ts.map