import { Severity } from './Severity';
export interface IssueGroup {
    number: number;
    type: Severity;
}
