export type AxisElementFinder = (anid: string) => boolean;
export type AxisElementType = 'axisLine' | 'axisLabel' | 'axisTick' | 'nameTextStyle' | 'splitLine' | 'splitArea' | 'minorSplitLine' | 'minorTick';
export type AxisElementInfos = Record<AxisElementType, AxisElementFinder>;