/** Load and parse the root package json for the project */ export declare function loadPackageJson(root?: string): Promise; export interface IRepoConfig { /** Owner of the repo (or GitHub user) */ owner: string; /** The project */ repo: string; } /** Try to the the owner/repo from the package.json */ export declare function getRepo(): Promise; /** Get the author from a package.json */ export declare function getAuthor(): Promise; //# sourceMappingURL=index.d.ts.map