export type ChartsAxisHighlightType = 'none' | 'line' | 'band';
export type ChartsAxisHighlightProps = {
  x?: ChartsAxisHighlightType;
  y?: ChartsAxisHighlightType;
};