import { TemplateResult } from 'lit'; import { TcBase } from './tc-base.js'; import { ValueShapeRectangle } from './types.js'; export declare class TcBar extends TcBase { min: number; gap: number; radius: number; horizontal: boolean; protected computeChartShapes(): void; protected chartTemplate(): TemplateResult; protected tooltipTemplate(): TemplateResult; protected findValueShapeAtPosition(x: number, y: number): ValueShapeRectangle | undefined; protected hasEnoughValueShapes(): boolean; }