import { type Identity } from '@byted-apaas/cli-core-sdk'; import { type ChangeSummary } from './types'; export interface GetChangeSummaryOptions { workspaceRoot: string; identity: Identity; skipLocal?: boolean; skipRemote?: boolean; forceFetchRemote?: boolean; namespace: string; cwd: string; } export default function getChangeSummary({ workspaceRoot, identity, skipLocal, skipRemote, namespace, forceFetchRemote, cwd, }: GetChangeSummaryOptions): Promise;