import { Plot } from '../plots'; export declare class CrosswindPlot extends Plot { units: string; constructor(units: string, subTitle?: string); /** * Set chart background color, based off current value * * @param val crosswind value */ getColor(val: number): "#00dd00" | "#bffc05" | "#ffff00" | "#fcb205" | "#ff0000"; getForceY(): number[]; /** * Assign yAxis label (left side of chart), based off current value * * @param val crosswind value */ getTickFormat(val: number): "Slight" | "Moderate" | "Severe" | "Low" | "High"; }