interface PullRequestOptions {
    title: string;
    body: string;
    branch: string;
}
export declare class GitHubClient {
    private token;
    private baseUrl;
    constructor(token: string);
    createPullRequest(options: PullRequestOptions): Promise<string>;
}
export {};
