import type { GenerateChartCellContext } from '../../type';
export declare const colorLine: (context: GenerateChartCellContext) => {
    spec: any;
};
export declare const cartesianLine: (context: GenerateChartCellContext) => {
    spec: any;
    cell: {
        x?: string | string[];
        y?: string | string[];
        color?: string | string[];
        size?: string;
        angle?: string;
        radius?: string;
        time?: string;
        source?: string;
        target?: string;
        value?: string;
        category?: string;
        isTransposed?: boolean;
    };
};
export declare const displayConfLine: (context: GenerateChartCellContext) => {
    spec: any;
};
export declare const pipelineLine: ((context: GenerateChartCellContext) => {
    spec: any;
})[];
