export declare const simpleBoxplotData: {
    group: string;
    key: string;
    value: number;
}[];
export declare const simpleBoxplotOptions: {
    title: string;
    axes: {
        bottom: {
            mapsTo: string;
        };
        left: {
            scaleType: string;
            mapsTo: string;
        };
    };
};
export declare const simpleVerticalBoxplotData: {
    group: string;
    key: string;
    value: number;
}[];
export declare const simpleVerticalBoxplotOptions: {
    title: string;
    axes: {
        left: {
            mapsTo: string;
        };
        bottom: {
            scaleType: string;
            mapsTo: string;
        };
    };
};
