import { FunctionComponent } from 'react'; export interface CustomAxisTick { x?: number; y?: number; payload?: { value: string; }; index?: number; } declare const CustomAxisTick: FunctionComponent; export default CustomAxisTick;