import { type Identity } from '@byted-apaas/cli-core-sdk'; /** * 应用包使用的组件是否为 builder 3.0(非运行时) */ export declare function isBuilder3Component(namespace: string, options: { cwd: string; identity: Identity; }): Promise; /** * 保留拓展性 */ export declare function assertOptionsInBuilder3>(commandOptions: T | undefined, options: { cwd: string; identity: Identity; namespace: string; notAllowedOptions: (keyof T)[]; }): Promise;