import type { AllSeriesType } from '@mui/x-charts/models'; export declare function getSeriesWithDefaultValues(seriesData: AllSeriesType<'rangeBar'>, seriesIndex: number, colors: readonly string[]): { colorGetter?: ((data: import("@mui/x-charts/internals").ColorCallbackValue) => string) | undefined; valueFormatter?: import("@mui/x-charts/internals").SeriesValueFormatter | undefined; highlightScope?: import("@mui/x-charts/internals").CommonHighlightScope | undefined; labelMarkType?: import("@mui/x-charts/internals").ChartsLabelMarkType; xAxisId?: import("@mui/x-charts/internals").AxisId; yAxisId?: import("@mui/x-charts/internals").AxisId; type: 'rangeBar'; data?: ReadonlyArray; valueGetter?: (item: import("@mui/x-charts/internals").DatasetElementType) => import("../../../index.mjs").RangeBarValueType | null; datasetKeys?: { start: string; end: string; }; label?: string | ((location: 'tooltip' | 'legend') => string); layout?: 'horizontal' | 'vertical'; id: string; color: string; };