import { ColorFactory } from "../../shared/factory/color-factory"; import { UsageRange } from "../../shared/model/usage-range"; import * as i0 from "@angular/core"; export declare class BarchartComponent { /** * Display in small/large mode * @type {boolean} */ small: boolean; /** * Data used to render the barchart */ data: UsageRange[]; /** * Show bar as gradient or solid color * @type {boolean} */ gradientBar: boolean; /** * Factory used to determine color based on bar value * @type {ColorFactory} */ colorFactory: typeof ColorFactory; /** * Display as date 'M/d' (false) or as time 'h:mm a' (true) * @type {boolean} */ showTime: boolean; dateAsString: boolean; loading: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }