/**
 * Get repository, homepage, bugs, author from .git
 */
export declare function getPackageJsonFromGit(baseDir?: string): Promise<PackageJsonFromGit>;

export declare interface PackageJsonFromGit {
    repository?: {
        type: string;
        url: string;
    };
    homepage?: string;
    bugs?: {
        url: string;
    };
    author?: {
        name: string;
        email: string;
    };
    funding?: string;
}

export { }
