import type { AllSeriesType } from '@mui/x-charts/models'; export declare function getSeriesWithDefaultValues(seriesData: AllSeriesType<'rangeBar'>, seriesIndex: number, colors: readonly string[]): { id: string; color: string; 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"; valueFormatter?: import("@mui/x-charts/internals").SeriesValueFormatter | undefined; highlightScope?: import("@mui/x-charts/internals").CommonHighlightScope | undefined; labelMarkType?: import("@mui/x-charts/internals").ChartsLabelMarkType; colorGetter?: ((data: import("@mui/x-charts/internals").ColorCallbackValue) => string) | undefined; xAxisId?: import("@mui/x-charts/internals").AxisId; yAxisId?: import("@mui/x-charts/internals").AxisId; };