import { SVGTemplateResult } from 'lit'; import { AdviceState, AdviceType } from '../watch/advice'; export interface LinearAdviceRaw { min: number; max: number; type: AdviceType; state: AdviceState; } export interface LinearAdvice { min: number; max: number; type: AdviceType; hinted: boolean; } export declare function renderAdvice(height: number, advice: LinearAdviceRaw, flipDirection: boolean): SVGTemplateResult; //# sourceMappingURL=advice.d.ts.map