import { ElementRef } from '@angular/core'; import type { ExportFormat } from '../shared/chart-export-menu.component'; import { fmtNum } from '../shared/chart-utils'; import * as i0 from "@angular/core"; export interface CandlestickItem { date: string | Date; open: number; high: number; low: number; close: number; } export declare class HollowCandlestickChartComponent { private readonly exportSvc; readonly PAD_LEFT = 52; readonly PAD_TOP = 20; readonly PAD_RIGHT = 24; readonly PAD_BOTTOM = 36; data: import("@angular/core").InputSignal; height: import("@angular/core").InputSignal; showGrid: import("@angular/core").InputSignal; showLabels: import("@angular/core").InputSignal; showExport: import("@angular/core").InputSignal; colors: import("@angular/core").InputSignal; bullishColor: import("@angular/core").InputSignal; bearishColor: import("@angular/core").InputSignal; hoveredIndex: import("@angular/core").WritableSignal; tooltip: import("@angular/core").WritableSignal<{ x: number; y: number; date: string | Date; open: number; high: number; low: number; close: number; isUp: boolean; direction: string; hollowText: string; changePct: string; } | null>; containerWidth: import("@angular/core").WritableSignal; svgEl: import("@angular/core").Signal | undefined>; private container; constructor(); innerW: import("@angular/core").Signal; innerH: import("@angular/core").Signal; yMin: import("@angular/core").Signal; yMax: import("@angular/core").Signal; yTicks: import("@angular/core").Signal; xPos(index: number): number; yPos(y: number): number; candleWidth(): number; computedCandles: import("@angular/core").Signal<{ x: number; centerX: number; width: number; yHigh: number; yLow: number; yOpen: number; yClose: number; y: number; rectH: number; yBodyTop: number; yBodyBottom: number; color: string; isUp: boolean; isHollow: boolean; raw: CandlestickItem; }[]>; shouldShowXLabel(index: number): boolean; onCandleHover(event: MouseEvent, item: CandlestickItem, index: number): void; formatDate(d: string | Date): string; onExport(type: ExportFormat): void; exportToCsv(): void; exportToJson(): void; exportToSvg(): void; exportToPdf(): void; readonly fmtNum: typeof fmtNum; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }