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