export const SCALES: unique symbol; /** @typedef {typeof __propDef.props} RadialAxisProps */ /** @typedef {typeof __propDef.events} RadialAxisEvents */ /** @typedef {typeof __propDef.slots} RadialAxisSlots */ export default class RadialAxis extends SvelteComponent<{ angleScale: any; raduisScale: any; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type RadialAxisProps = typeof __propDef.props; export type RadialAxisEvents = typeof __propDef.events; export type RadialAxisSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { angleScale: any; raduisScale: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};