import { SfCommand } from '@salesforce/sf-plugins-core'; export type SetupAgentsServeResult = { port: number; hostname: string; cwd: string; version: string; }; export default class Serve extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { port: import("@oclif/core/interfaces").OptionFlag; hostname: import("@oclif/core/interfaces").OptionFlag; open: import("@oclif/core/interfaces").BooleanFlag; 'auto-reload': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }