import type { AllSeriesType } from '@mui/x-charts/models'; export declare function getSeriesWithDefaultValues(seriesData: AllSeriesType<'ohlc'>, seriesIndex: number, colors: readonly string[], theme: 'light' | 'dark'): { id: string; color: string; upColor: string; downColor: string; type: "ohlc"; data?: ReadonlyArray; label?: string | ((location: "tooltip" | "legend") => string); valueFormatter?: (value: number | null, context: { dataIndex: number; field: import("../../index.mjs").OHLCField; }) => string | null; valueGetter?: (item: import("@mui/x-charts/internals").DatasetElementType) => import("../../index.mjs").OHLCValueType | null; datasetKeys?: { open: string; high: string; low: string; close: string; }; highlightScope?: import("@mui/x-charts/internals").CommonHighlightScope | undefined; labelMarkType?: import("@mui/x-charts/internals").ChartsLabelMarkType | undefined; colorGetter?: ((data: import("@mui/x-charts/internals").ColorCallbackValue) => string) | undefined; xAxisId?: import("@mui/x-charts/internals").AxisId; yAxisId?: import("@mui/x-charts/internals").AxisId; };