import { type Identity } from '@byted-apaas/cli-core-sdk'; import { type ComponentType, type WebIdeConfig } from '../helpers/types'; export interface ComponentDevOptions { identity: Identity; targets: string[]; setAsDefaultTargets?: boolean; workspaceRoot: string; namespace: string; componentType: ComponentType; targetNamespace?: string; cwd: string; port: number; mixDevConfig?: Array<{ port: number; host: string; componentType: ComponentType; }>; webIdeConfig?: WebIdeConfig; } export declare function componentDev(options: ComponentDevOptions): Promise;