/** @typedef {typeof __propDef.props} AxisProps */ /** @typedef {typeof __propDef.events} AxisEvents */ /** @typedef {typeof __propDef.slots} AxisSlots */ export default class Axis extends SvelteComponentTyped<{ ticks: import("../../types/common").ticks | undefined; first?: boolean | undefined; last?: boolean | undefined; tick_format?: string | import("../../types/common").tick_accessor | undefined; value?: import("../../types/common").value | undefined; i?: number | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type AxisProps = typeof __propDef.props; export type AxisEvents = typeof __propDef.events; export type AxisSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { ticks: import("../../types/common").ticks | undefined; first?: boolean | undefined; last?: boolean | undefined; tick_format?: import("../../types/common").tick_accessor | string | undefined; value?: import("../../types/common").value | undefined; i?: number | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};