import { type Identity } from '@byted-apaas/cli-core-sdk'; import { type ComponentType } from '../../helpers/types'; export interface ComponentCreateOptions { identity: Identity; workspaceRoot: string; namespace: string; cwd: string; cli: string; componentType: ComponentType; component_api_name?: string; opts: { template?: string | boolean; web?: boolean; mini?: boolean; all?: boolean; mobile?: boolean; pc?: boolean; }; }