import { type Identity } from '@byted-apaas/cli-core-sdk'; import type { WebIdeConfig } from './types'; declare function getWebIdeConfig({ identity, cwd, port, }: { identity: Identity; cwd: string; port: number; }): Promise; export default getWebIdeConfig;