import { LitElement } from 'lit'; import { LineType } from '..'; export declare enum AutomationReadoutPosition { Left = "left", Right = "right", Top = "top", Bottom = "bottom" } export declare class ObcAutomationReadout extends LitElement { value: number; unit: string; numberOfDigits: number; position: AutomationReadoutPosition; lineType: LineType | undefined; render(): import('lit-html').TemplateResult<1>; getLineWidth(): number; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'obc-automation-readout': ObcAutomationReadout; } } //# sourceMappingURL=automation-readout.d.ts.map