import { ScmIntegrationRegistry } from '@backstage/integration'; /** * @public */ export declare const getRepoSourceDirectory: (workspacePath: string, sourcePath: string | undefined) => string; /** * @public */ export declare const parseRepoUrl: (repoUrl: string, integrations: ScmIntegrationRegistry) => { repo: string; host: string; owner?: string | undefined; organization?: string | undefined; workspace?: string | undefined; project?: string | undefined; };