import { type Identity } from '@byted-apaas/cli-core-sdk'; export interface CreateByTemplateOptions { componentsRoot: string; destination: string; componentName: string; apiName: string; target: 'web' | 'mini'; template: string | boolean; cwd: string; namespace: string; identity: Identity; } export default function createByTemplate(options: CreateByTemplateOptions): Promise;