/** @typedef {typeof __propDef.props} RuleProps */ /** @typedef {typeof __propDef.events} RuleEvents */ /** @typedef {typeof __propDef.slots} RuleSlots */ export default class Rule extends SvelteComponentTyped<{ x?: boolean | import("../../types/common").value | import("../../types/common").accessor | undefined; y?: boolean | import("../../types/common").value | import("../../types/common").accessor | undefined; datum?: import("../../types/common").datum | undefined; fill?: string | undefined; stroke?: string | undefined; stroke_width?: number | undefined; }, { [evt: string]: CustomEvent; }, { default: { x1: any; y1: any; x2: any; y2: any; }; }> { } export type RuleProps = typeof __propDef.props; export type RuleEvents = typeof __propDef.events; export type RuleSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { x?: boolean | import("../../types/common").value | import("../../types/common").accessor | undefined; y?: boolean | import("../../types/common").value | import("../../types/common").accessor | undefined; datum?: import("../../types/common").datum | undefined; fill?: string | undefined; stroke?: string | undefined; stroke_width?: number | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { x1: any; y1: any; x2: any; y2: any; }; }; }; export {};