import type { WorkSpreadsheetChart } from './work-types'; export interface SpreadsheetChartPlotBounds { x: number; y: number; width: number; height: number; } interface SpreadsheetChartLegendFrame { width: number; height: number; titleHeight: number; } export interface SpreadsheetChartLegendLayout { plot: SpreadsheetChartPlotBounds; svg: string; } export declare function spreadsheetChartLegendLayout(chart: WorkSpreadsheetChart, sourcePlot: SpreadsheetChartPlotBounds, frame: SpreadsheetChartLegendFrame): SpreadsheetChartLegendLayout; export {};