/** Hard cap shared by generated chart records, SVG marks, and accessible alternatives. */ export declare const MAX_RENDERED_CHART_RECORDS=1000; /** * Selects evenly distributed chart-table row and series indexes within the fixed rendering budget. * * Both endpoints remain represented for any source axis with two or more entries. The planner * selects the attainable pair closest to the source aspect ratio, then favors the pair using more * of the bounded cell budget. It never evaluates `rowCount * seriesCount` for source dimensions. */ export declare function sampleChartTableIndexes(rowCount:number,seriesCount:number):{readonly rowIndexes:readonly number[];readonly seriesIndexes:readonly number[];};