export function get_axis_context(): any; /** @typedef {typeof __propDef.props} AxisProps */ /** @typedef {typeof __propDef.events} AxisEvents */ /** @typedef {typeof __propDef.slots} AxisSlots */ export default class Axis extends SvelteComponentTyped<{ left?: boolean | undefined; top?: boolean | undefined; ticks?: import("../../types/common").ticks | undefined; right?: boolean | undefined; bottom?: boolean | undefined; tick_format?: string | import("../../types/common").tick_accessor | undefined; tick_padding?: number | undefined; tick_size?: number | undefined; tick_rule?: boolean | import("../../types/common").tick_accessor | undefined; transition?: boolean | 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: { left?: boolean | undefined; top?: boolean | undefined; ticks?: import("../../types/common").ticks | undefined; right?: boolean | undefined; bottom?: boolean | undefined; tick_format?: import("../../types/common").tick_accessor | string | undefined; tick_padding?: number | undefined; tick_size?: number | undefined; tick_rule?: boolean | import("../../types/common").tick_accessor | undefined; transition?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};