/** @typedef {typeof __propDef.props} LineProps */ /** @typedef {typeof __propDef.events} LineEvents */ /** @typedef {typeof __propDef.slots} LineSlots */ export default class Line extends SvelteComponent<{ strokeWidth: any; fillOpacity: any; x: any; y: any; fillRule: any; strokeDasharray: any; strokeDashoffset: any; strokeLinecap: any; strokeLinejoin: any; strokeMiterlimit: any; strokeOpacity: any; context: any; fill?: string | undefined; stroke?: string | undefined; data?: any[] | undefined; defined?: boolean | undefined; curve?: import("d3-shape").CurveFactory | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type LineProps = typeof __propDef.props; export type LineEvents = typeof __propDef.events; export type LineSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { strokeWidth: any; fillOpacity: any; x: any; y: any; fillRule: any; strokeDasharray: any; strokeDashoffset: any; strokeLinecap: any; strokeLinejoin: any; strokeMiterlimit: any; strokeOpacity: any; context: any; fill?: string | undefined; stroke?: string | undefined; data?: any[] | undefined; defined?: boolean | undefined; curve?: import("d3-shape").CurveFactory | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};