/** @typedef {typeof __propDef.props} GridRadialProps */ /** @typedef {typeof __propDef.events} GridRadialEvents */ /** @typedef {typeof __propDef.slots} GridRadialSlots */ export default class GridRadial extends SvelteComponent<{ scale: any; features?: any[] | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type GridRadialProps = typeof __propDef.props; export type GridRadialEvents = typeof __propDef.events; export type GridRadialSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { scale: any; features?: any[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};