import '@oicl/openbridge-webcomponents/dist/bars-graphs/line-graph/line-graph.js'; import { ChartDataset } from 'chart.js'; import { XAxisType, YAxisPosition, LineMode, TimeDisplay } from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js'; import { InstrumentState, Priority, FrameStyle, BorderRadiusPosition } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js'; export interface Props { data?: { label: string; value: number; }[]; datasets?: ChartDataset<"line", (number | { x: string | number | Date; y: number; })[]>[] | undefined; labels?: (string | number)[] | undefined; colors?: string[]; legend?: boolean; showDebugOverlay?: boolean; width?: number; height?: number; fixedAspectRatioScaling?: boolean; scaleReferenceSize?: number; xAxisType?: XAxisType; yAxisPosition?: YAxisPosition; yAxes?: { id?: string | undefined; position?: "left" | "right" | undefined; min?: number | undefined; max?: number | undefined; grid?: boolean | undefined; }[] | undefined; showGrid?: boolean; showGridX?: boolean; showGridY?: boolean; showTickMarks?: boolean; showPoints?: boolean; lineMode?: LineMode; unit?: string; timeDisplay?: TimeDisplay; xTicksLimit?: number | undefined; xStepSize?: number | undefined; yTicksLimit?: number | undefined; yStepSize?: number | undefined; state?: InstrumentState; priority?: Priority; frameStyle?: FrameStyle; borderRadiusPosition?: BorderRadiusPosition | undefined; borderRadiusPositionExternalScales?: BorderRadiusPosition | undefined; instrumentMode?: boolean; borderRadius?: number | undefined; } export type { ChartDataset } from 'chart.js'; export type { XAxisType, YAxisPosition, LineMode, TimeDisplay } from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js'; export type { InstrumentState, Priority, FrameStyle, BorderRadiusPosition } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js'; declare const _default: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export default _default;