export interface RoomBreakout { /** * Data used to populate the bar chart */ chartData: number[]; /** * Trend value to display */ trend: string; /** * Number of rooms to display */ rooms: string; /** * Show up, down, or no arrow */ arrowDirection: string; }