import React from 'react'; import { ValueFormatter } from "../types/charts"; interface CustomYAxisTickProps { align: 'left' | 'right'; formatter: ValueFormatter; payload: { value: number; }; x: number; y: number; yAxisLabel?: boolean; } declare const CustomYAxisTick: React.NamedExoticComponent; export default CustomYAxisTick;