import { Axis } from"../components/YAxis";
/**
* Ticks are the values shown along an axis
* We don't want to show too many by default as they then overlap each other
*/exportdeclareconstbuildTicks: (scale: Axis["scale"], values: string[] | number[], domain: number[]) =>any[];