import { type Identity } from '@byted-apaas/cli-core-sdk'; import { type BizName, type Tools } from '../../helpers/types'; interface BizNameOptions { component_api_name?: string; identity: Identity; namespace: string; cwd: string; } interface GenerateToolsOptions { workspaceRoot: string; identity: Identity; namespace: string; componentName: string; componentsRoot: string; cwd: string; cli: string; } /** * generate biz name */ declare function generateBizName(options: BizNameOptions): Promise; declare function generateTools(options: GenerateToolsOptions): Promise; export { generateBizName, generateTools };