import type { WorkSpreadsheetChartSeriesStyle } from '../work-types'; interface SpreadsheetChartSeriesStyleEditorProps { seriesNumber: number; supportsMarkers: boolean; value?: WorkSpreadsheetChartSeriesStyle; onChange: (style: WorkSpreadsheetChartSeriesStyle | undefined) => void; } export declare function SpreadsheetChartSeriesStyleEditor({ seriesNumber, supportsMarkers, value, onChange, }: SpreadsheetChartSeriesStyleEditorProps): import("react").JSX.Element; export {};