interface RepositoryObject { url: string; directory?: string; type?: string; } interface NormalizedRepo { url: string; shortcut?: string; provider?: string; owner?: string; name?: string; } declare function normalizeRepo(repo: RepositoryObject | string): NormalizedRepo; export default normalizeRepo; export { normalizeRepo };