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