/**
 * Represents github repo owner either
 * - users
 * - organization
 */
export class GithubOwner extends RepositoryGroup {
    /**
     * Map attributes between external and internal representation.
     */
    static get attributeMapping(): {
        site_admin: string;
    };
    get api(): string;
}
import { RepositoryGroup } from "repository-provider";
