import { HttpMethod } from '../../../types/Cms.js'; import { CommonArgs, ConfigArgs, YargsCommandModule } from '../../../types/Yargs.js'; type FunctionCreateArgs = CommonArgs & ConfigArgs & { name?: string; dest?: string; functionsFolder?: string; filename?: string; endpointMethod?: HttpMethod; endpointPath?: string; }; declare const functionCreateCommand: YargsCommandModule; export default functionCreateCommand;