/// <reference types="react" />
export interface SwimlaneBackgroundProps {
    lanes: SwimLaneProps[];
    className?: string;
    style?: React.CSSProperties;
}
export interface SwimLaneProps {
    id: string;
    label: string;
    labelColor?: string;
    backgroundColor?: string;
    width?: string;
    style?: React.CSSProperties;
}
declare const SwimlaneBackground: (props: SwimlaneBackgroundProps) => import("react/jsx-runtime").JSX.Element;
export default SwimlaneBackground;
