import { SVGWidget } from "@hpcc-js/common"; export declare class QuartileCandlestick extends SVGWidget { protected _g: any; protected _leftLine: any; protected _rightLine: any; protected _midLine: any; protected _midOuterRect: any; protected _midInnerRect1: any; protected _midInnerRect2: any; protected _q0text: any; protected _q1text: any; protected _q2text: any; protected _q3text: any; protected _q4text: any; protected _q0val: any; protected _q1val: any; protected _q2val: any; protected _q3val: any; protected _q4val: any; constructor(); enter(domNode: any, element: any): void; update(domNode: any, element: any): void; } export interface QuartileCandlestick { orientation(): "horizontal" | "vertical"; orientation(_: "horizontal" | "vertical"): this; textPadding(): number; textPadding(_: number): this; edgePadding(): number; edgePadding(_: number): this; candleWidth(): number; candleWidth(_: number): this; candleWidth_exists(): boolean; lineWidth(): number; lineWidth(_: number): this; lineColor(): string; lineColor(_: string): this; innerRectColor(): string; innerRectColor(_: string): this; lowerTextRotation(): number; lowerTextRotation(_: number): this; upperTextRotation(): number; upperTextRotation(_: number): this; roundedCorners(): number; roundedCorners(_: number): this; labelFontSize(): number; labelFontSize(_: number): this; valueFontSize(): number; valueFontSize(_: number): this; textColor(): string; textColor(_: string): this; showLabels(): boolean; showLabels(_: boolean): this; showValues(): boolean; showValues(_: boolean): this; }