import { type Identity } from '@byted-apaas/cli-core-sdk'; export interface InjectDefaultConfigOptions { identity: Identity; workspaceRoot: string; branch?: string; cwd: string; } export default function injectDefaultPreferences({ workspaceRoot, identity, branch, cwd, }: InjectDefaultConfigOptions): Promise;