import { Duration } from "./duration"; export interface NptAggregateRow { /** * A number of NPT events that match this group. */ count: number; duration?: Duration; nptCode?: string; nptCodeDetail?: string; }