import type { CandleSetStats, ChartLabels } from '../types/candlestick.js';
export declare class InfoBar {
    name: string;
    labels: ChartLabels;
    constructor(name: string);
    private formatPrice;
    private renderPriceField;
    renderAverage(stats: CandleSetStats): string;
    renderHighest(stats: CandleSetStats): string;
    renderLowest(stats: CandleSetStats): string;
    renderPrice(stats: CandleSetStats): string;
    renderVariation(stats: CandleSetStats): string;
    renderVolume(stats: CandleSetStats): string;
    render(stats: CandleSetStats, width: number): string;
}
