import type { ChartSide } from '@adam-sv/arc'; export type ClipType = 'diag' | 'short' | 'long'; export type ClipPlace = 'left' | 'right' | 'top' | 'bottom'; export type ClipTypes = Partial>; export interface IChartAxisClipPathProps { axisSide: ChartSide; axisSize: number; startingGutterSize: number; endingGutterSize: number; clipTypes: ClipTypes; } export declare function getClipPathPolygon({ axisSide, axisSize, startingGutterSize, endingGutterSize, clipTypes, }: IChartAxisClipPathProps): string;