export declare class Auth {
    /**
     * Username or organization name.
     *
     * @example
     * https://github.com/sfm-tools/branch-remover
     *                    ^^^^^^^^  ^^^^^^^^^^^^^^
     *                    owner     repo
     */
    readonly owner: string;
    /**
     * Repository name.
     *
     * @example
     * https://github.com/sfm-tools/branch-remover
     *                    ^^^^^^^^  ^^^^^^^^^^^^^^
     *                    owner     repo
     */
    readonly repo: string;
    /**
     * GitHub access token.
     *
     * @see https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/creating-a-personal-access-token
     */
    readonly token: string;
    constructor(owner: string, repo: string, token: string);
}
