/// /** @public */ export type PagerDutyChangeEvent = { id: string; integration: [ { service: PagerDutyService; } ]; source: string; html_url: string; links: [ { href: string; text: string; } ]; summary: string; timestamp: string; }; /** @public */ export type PagerDutyIncident = { id: string; title: string; status: string; html_url: string; assignments: [ { assignee: PagerDutyAssignee; } ]; serviceId: string; created_at: string; }; /** @public */ export type PagerDutyService = { id: string; name: string; html_url: string; integrationKey: string; escalation_policy: { id: string; user: PagerDutyUser; html_url: string; }; }; /** @public */ export type PagerDutyOnCall = { user: PagerDutyUser; escalation_level: number; }; /** @public */ export type PagerDutyAssignee = { id: string; summary: string; html_url: string; }; /** @public */ export type PagerDutyUser = { id: string; summary: string; email: string; html_url: string; name: string; }; /** @public */ export type SubHeaderLink = { title: string; href?: string; icon: React.ReactNode; action?: React.ReactNode; };