export interface RepositoryUrlOption { baseUrl: string; owner: string; repo: string; } export declare const generateRepositoryUrl: ({ baseUrl, owner, repo }: RepositoryUrlOption) => string; export interface CommitOption { repositoryUrl: string; sha: string; } export declare const generateCommitUrl: ({ repositoryUrl, sha }: CommitOption) => string; export interface CompareUrlOption { repositoryUrl: string; baseSha: string; headSha: string; } export declare const generateCompareUrl: ({ repositoryUrl, baseSha, headSha }: CompareUrlOption) => string; export declare const generateMarkdownLink: (text: string, url?: string | undefined) => string;