import type { CommandOptions } from '../../types';
export interface GithubOptions extends CommandOptions {
    repo?: string;
    fromGithub?: string;
}
export interface RepoContext {
    owner: string;
    repo: string;
}
export declare function getRepoContext(options?: GithubOptions): Promise<RepoContext | null>;
