import { ScaleBand } from "d3"; import "./style.scss"; export interface ISwimLaneAxisProps { textOffset?: number; scale: ScaleBand; useAngledApproach?: boolean; } export declare const SwimLanes: ({ scale, textOffset, useAngledApproach, }: ISwimLaneAxisProps) => import("react/jsx-runtime").JSX.Element | null;