import type { AxisOption } from '../types'; type $$ComponentProps = { x: number; y: number; rotate?: boolean; label?: string; options?: AxisOption[]; selected_key?: string; color?: string | null; loading?: boolean; axis_type: `x` | `x2` | `y` | `y2`; on_select?: (key: string) => void; }; declare const AxisLabel: import("svelte").Component<$$ComponentProps, {}, "">; type AxisLabel = ReturnType; export default AxisLabel;