import { type RemoteRepoInfo } from '@byted-apaas/cli-core-sdk'; export interface ThrowRepoVerifyErrorOptions { name: string; message: string; code: string; remoteRepoInfo: RemoteRepoInfo; cwd: string; workspaceRoot: string; } export default function throwRepoVerifyError(options: ThrowRepoVerifyErrorOptions): Promise;