import { type Identity, type WorkspaceConfig } from '@byted-apaas/cli-core-sdk'; export interface ExportAppPackageOptions { cwd: string; identity: Identity; namespace: string; destination: string; ignoreHEAD: boolean; workspaceConfig: WorkspaceConfig; branch?: string; } export default function exportAppPackage(options: ExportAppPackageOptions): Promise;