/** @typedef {typeof __propDef.props} CellProps */ /** @typedef {typeof __propDef.events} CellEvents */ /** @typedef {typeof __propDef.slots} CellSlots */ export default class Cell extends SvelteComponentTyped<{ x?: import("../../types/common").value | import("../../types/common").accessor | undefined; y?: 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: { x: any; y: any; width: any; height: any; }; }> { } export type CellProps = typeof __propDef.props; export type CellEvents = typeof __propDef.events; export type CellSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { x?: import("../../types/common").accessor | import("../../types/common").value | undefined; y?: import("../../types/common").accessor | import("../../types/common").value | undefined; datum?: import("../../types/common").datum | undefined; fill?: string | undefined; stroke?: string | undefined; stroke_width?: number | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { x: any; y: any; width: any; height: any; }; }; }; export {};