import { BlockProps } from 'victory'; import { IStackedChartData } from '../types/chartData'; export declare function useDynamicTickCount(data: IStackedChartData, width: number, minTickLabelYLength: number, chartPadding: BlockProps, xTickFormat: (tick: any, index: number, ticks: any[]) => string, yTickFormat: (tick: any, index: number, ticks: any[]) => string, xTickHide: boolean, yTickHide: boolean, categoriesFormat?: (tick: Date) => string, tickLetterSize?: number): { paddingWithLabel: BlockProps; maxYTextLength: number; xTickCount: number; };