import '@oicl/openbridge-webcomponents/dist/navigation-instruments/velocity-projection-plot/velocity-projection-plot.js'; import type { VelocityProjectionDatapoint } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/velocity-projection-plot/velocity-projection-plot.js'; import type { VesselImage } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; dataPoints?: VelocityProjectionDatapoint[]; instantWindDirectionDeg?: number | null; instantWindSpeedNumber?: number | null; instantCurrentDirectionDeg?: number | null; instantCurrentSpeedNumber?: number | null; vesselImage?: VesselImage; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcVelocityProjectionPlot: import("svelte").Component<$$ComponentProps, { VelocityProjectionDatapoint: typeof VelocityProjectionDatapoint; VesselImage: typeof VesselImage; }, "">; type ObcVelocityProjectionPlot = ReturnType; export default ObcVelocityProjectionPlot;