/** @typedef {typeof __propDef.props} LineProps */ /** @typedef {typeof __propDef.events} LineEvents */ /** @typedef {typeof __propDef.slots} LineSlots */ export default class Line extends SvelteComponentTyped<{ data: import("../../types/common").data; x?: import("../../types/common").accessor | undefined; y?: import("../../types/common").accessor | undefined; fill?: string | undefined; curve?: import("d3-shape").CurveFactory | undefined; defined?: import("../../types/common").accessor | undefined; stroke?: string | undefined; stroke_width?: number | undefined; }, { [evt: string]: CustomEvent; }, { default: { d: any; }; }> { } export type LineProps = typeof __propDef.props; export type LineEvents = typeof __propDef.events; export type LineSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { data: import("../../types/common").data; x?: import("../../types/common").accessor | undefined; y?: import("../../types/common").accessor | undefined; fill?: string | undefined; curve?: import("d3-shape").CurveFactory | undefined; defined?: import("../../types/common").accessor | undefined; stroke?: string | undefined; stroke_width?: number | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { d: any; }; }; }; export {};