import { type WorkSpreadsheetChart, type WorkSpreadsheetChartAxes, type WorkSpreadsheetChartType } from './work-types'; export declare function parseXlsxChartAxes(document: Document, chartType: WorkSpreadsheetChartType, hasSecondaryAxes: boolean, preserveVisibleDefaultGridlines?: boolean): WorkSpreadsheetChartAxes | undefined; export declare function chartTextTitleXml(title: string, reference: string | undefined): string; export declare function chartAxesXml(chart: WorkSpreadsheetChart, categoryAxisId: number, valueAxisId: number, secondaryCategoryAxisId: number, secondaryValueAxisId: number): string;