import { Blueprint } from '@amazon-codecatalyst/blueprints.blueprint'; import { Component } from 'projen'; import { Difference } from '../difference/difference'; export interface PullRequestDefinition { /** * This is the title of the pull request */ title: string; /** * Markdown representing the main body of the pull request */ description: string; /** * Differences in this pull request */ changes?: Difference[]; } export declare class PullRequest extends Component { readonly blueprint: Blueprint; readonly identifier: string; readonly options: PullRequestDefinition; static BUNDLE_PATH: string; constructor(blueprint: Blueprint, identifier: string, options: PullRequestDefinition); synthesize(): void; }