import type { ReactNode, CSSProperties } from 'react'; import type { LabelProps } from './Label'; export type HtmlLabelProps = Pick & { /** Pass in a custom element as the label to style as you like. Renders inside a , be aware that most non-browser SVG renderers will not render HTML s. See: https://github.com/airbnb/visx/issues/1173#issuecomment-1014380545. */ children?: ReactNode; /** Optional styles to apply to the HTML container. */ containerStyle?: CSSProperties; }; export default function HtmlLabel({ anchorLineStroke, children, className, containerStyle, horizontalAnchor: propsHorizontalAnchor, resizeObserverPolyfill, showAnchorLine, verticalAnchor: propsVerticalAnchor, x: propsX, y: propsY, }: HtmlLabelProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=HtmlLabel.d.ts.map