export const elementName: "frc-number-bar"; export namespace elementConfig { namespace dashboard { const displayName: string; } namespace properties { namespace value { const type: NumberConstructor; const primary: boolean; } namespace max { const type_1: NumberConstructor; export { type_1 as type }; export const defaultValue: number; } namespace min { const type_2: NumberConstructor; export { type_2 as type }; const defaultValue_1: number; export { defaultValue_1 as defaultValue }; } namespace center { const type_3: NumberConstructor; export { type_3 as type }; } namespace precision { const type_4: NumberConstructor; export { type_4 as type }; const defaultValue_2: number; export { defaultValue_2 as defaultValue }; } namespace hideText { const type_5: BooleanConstructor; export { type_5 as type }; export const attribute: string; } namespace numTickMarks { const type_6: NumberConstructor; export { type_6 as type }; const defaultValue_3: number; export { defaultValue_3 as defaultValue }; const attribute_1: string; export { attribute_1 as attribute }; } namespace unit { const type_7: StringConstructor; export { type_7 as type }; } } } export default class NumberBar extends LitElement { static properties: { value: { type: NumberConstructor; primary: boolean; }; max: { type: NumberConstructor; defaultValue: number; }; min: { type: NumberConstructor; defaultValue: number; }; center: { type: NumberConstructor; }; precision: { type: NumberConstructor; defaultValue: number; }; hideText: { type: BooleanConstructor; attribute: string; }; numTickMarks: { type: NumberConstructor; defaultValue: number; attribute: string; }; unit: { type: StringConstructor; }; }; static styles: import("lit").CSSResult[]; value: number; max: number; min: number; center: number; precision: number; hideText: boolean; numTickMarks: number; unit: string; render(): import("lit").TemplateResult<1>; } import { LitElement } from "lit/node_modules/lit-element/lit-element";