import { Command, flags } from '@oclif/command'; export default class CreateServiceCommand extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; region: flags.IOptionFlag; envId: flags.IOptionFlag; serviceName: flags.IOptionFlag; isPublic: import("@oclif/parser/lib/flags").IBooleanFlag; json: import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; } /** * 校验服务名称是否非法,非法时返回报错信息 */ export declare function valiateServiceName(serviceName: string, serviceNameList?: string[]): string;