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

export type IncomeYearProps =
  Pick<BackgroundBoxProps, 'height' | 'calcRefresh' | 'reloadData'>
  & Props<IncomeYear>