import React from 'react'; import { EventsProps } from '../eventsUtils'; export interface BaseSeriesProps extends EventsProps { id?: string | number; } export declare const createSeries: (componentName: string, markNames: string[], type?: string, registers?: (() => void)[]) => React.FC;