import type { WorkSpreadsheetChartAxes, WorkSpreadsheetChartType } from '../work-types'; interface SpreadsheetChartAxisEditorProps { axes: WorkSpreadsheetChartAxes | undefined; chartType: WorkSpreadsheetChartType; showSecondaryAxes: boolean; onChange: (axes: WorkSpreadsheetChartAxes) => void; } export declare function SpreadsheetChartAxisEditor({ axes, chartType, showSecondaryAxes, onChange, }: SpreadsheetChartAxisEditorProps): import("react").JSX.Element; export {};