import { type JSX } from 'react'; /** @internal */ export declare const SubRowExpanderPath: import("react").MemoExoticComponent<(props: { /** * The id of the row in which the path should be drawn. */ rowId: string; /** * The width of the SVG. */ width: number; /** * The shape that should be drawn as the path. */ rowLineConfig: Array<"Line" | "TShape" | "LShape" | "Empty">; /** * Whether the row can be expanded further. */ rowCanExpand?: boolean; }) => JSX.Element>;