/** @typedef {typeof __propDef.props} CustomXAxisProps */ /** @typedef {typeof __propDef.events} CustomXAxisEvents */ /** @typedef {typeof __propDef.slots} CustomXAxisSlots */ export default class CustomXAxis extends SvelteComponent<{ fontFamily: any; fontSize: any; fontSizeAdjust: any; fontStretch: any; fontStyle: any; fontVariant: any; fontWeight: any; scale: any; strokeDasharray: any; strokeDashoffset: any; strokeLinecap: any; strokeLinejoin: any; strokeMiterlimit: any; strokeOpacity: any; tickFormat: any; tickValues: any; d: any; tickColor: any; fill?: string | undefined; stroke?: string | undefined; strokeWidth?: number | undefined; x?: number | undefined; y?: number | undefined; tickSize?: number | undefined; tickPadding?: number | undefined; orient?: string | undefined; tickArguments?: number[] | undefined; class?: string | undefined; id?: string | undefined; tickOffset?: number | undefined; }, { [evt: string]: CustomEvent; }, { default: { ticks: any[]; format: any; previousScale: any; }; label: {}; }> { } export type CustomXAxisProps = typeof __propDef.props; export type CustomXAxisEvents = typeof __propDef.events; export type CustomXAxisSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { fontFamily: any; fontSize: any; fontSizeAdjust: any; fontStretch: any; fontStyle: any; fontVariant: any; fontWeight: any; scale: any; strokeDasharray: any; strokeDashoffset: any; strokeLinecap: any; strokeLinejoin: any; strokeMiterlimit: any; strokeOpacity: any; tickFormat: any; tickValues: any; d: any; tickColor: any; fill?: string | undefined; stroke?: string | undefined; strokeWidth?: number | undefined; x?: number | undefined; y?: number | undefined; tickSize?: number | undefined; tickPadding?: number | undefined; orient?: string | undefined; tickArguments?: number[] | undefined; class?: string | undefined; id?: string | undefined; tickOffset?: number | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { ticks: any[]; format: any; previousScale: any; }; label: {}; }; }; export {};