export declare const PULL_REQUEST_STATUS_TYPE: { readonly Open: 1; readonly Closed: 2; readonly Merged: 3; }; export type PullRequestStatusType = (typeof PULL_REQUEST_STATUS_TYPE)[keyof typeof PULL_REQUEST_STATUS_TYPE];