import { BackgroundBoxProps } from '../BackgroundBoxProps';
import { OutpatientTrend } from '../entity';
import { Props } from '../Props';

export type OutpatientTrendsProps =
  Pick<BackgroundBoxProps, 'height' | 'calcRefresh' | 'reloadData'>
  & Props<Array<OutpatientTrend>>