import { SvelteComponent } from "svelte"; declare const __propDef: { props: { path: Float32Array | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type MotionPathProps = typeof __propDef.props; export type MotionPathEvents = typeof __propDef.events; export type MotionPathSlots = typeof __propDef.slots; /** * Renders a motion plan using thick lines. * * Assumes the motion plan is coming in as a Float32Array in the following format: * Float32Array([x1, y1, x2, y2, x3, y3, ...]) * * Units are assumed to be in Meters. * Must not contain NaN. */ export default class MotionPath extends SvelteComponent { } export {};