type BodyOptions<ColorValue> = {
    color?: ColorValue;
};
type WickOptions<ColorValue> = {
    color?: ColorValue;
    strokeWidth?: number;
};
export declare const resolveCandlestickPathOptions: <ColorValue, CustomBodyOptions extends BodyOptions<ColorValue>, CustomWickOptions extends WickOptions<ColorValue>>({ color, wickStrokeWidth, options, }: {
    color: ColorValue;
    wickStrokeWidth: number;
    options: {
        body?: CustomBodyOptions;
        wick?: CustomWickOptions;
    };
}) => {
    bodyOptions: {
        color: ColorValue;
    };
    wickOptions: {
        color: ColorValue;
        strokeWidth: number;
    };
};
export {};
