import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../../types/Yargs.js'; export type FunctionServerArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & { path: string; port?: string; contact?: boolean; watch?: boolean; 'log-output'?: boolean; }; declare const functionServerCommand: YargsCommandModule; export default functionServerCommand;