import React from 'openinula';
import { EventsProps } from '../eventsUtils';
export interface BaseSeriesProps extends EventsProps {
    id?: string | number;
}
export declare const createSeries: <T extends BaseSeriesProps>(componentName: string, markNames: string[], type?: string) => React.FC<T & {
    updateId?: number;
    componentId?: string;
}>;
