import type { GenerateChartCellContext } from '../../type';
export declare const colorBar: (context: GenerateChartCellContext) => {
    spec: any;
};
export declare const cartesianBar: (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 displayConfBar: (context: GenerateChartCellContext) => {
    spec: any;
};
export declare const transposeField: (context: GenerateChartCellContext) => GenerateChartCellContext;
export declare const animationCartesianBar: (context: GenerateChartCellContext) => {
    spec: any;
};
export declare const pipelineBar: ((context: GenerateChartCellContext) => {
    spec: any;
})[];
