/**
 * @packageDocumentation
 * @internal
 */
import { Repository } from "../../../PackageJSON";
interface OwnerAndRepo {
    owner: string;
    repo: string;
}
export declare function extractGithubOwnerAndRepo(repository?: Repository | string): OwnerAndRepo | undefined;
export {};
