import * as React from 'react'; /** * Returns the friendly display form of the repository path (e.g., removing "github.com/"). */ export declare function displayRepoPath(repoPath: string): string; /** * Splits the repository path into the dir and base components. */ export declare function splitPath(path: string): [string, string]; interface Props { repoPath: string; repoURL: string; filePath: string; fileURL: string; } /** * A link to a repository or a file within a repository, formatted as "repo" or "repo > file". Unless you * absolutely need breadcrumb-like behavior, use this instead of FilePathBreadcrumb. */ export declare const RepoFileLink: React.SFC; export {}; //# sourceMappingURL=RepoFileLink.d.ts.map