import type { BodyLandmarks } from "../../pose-detect"; export interface PoseOverlayProps { landmarks: BodyLandmarks; /** Image width in pixels — used for the SVG viewBox so the overlay * scales with the underlying photo via `preserveAspectRatio="xMidYMid meet"`. */ width: number; height: number; /** Optional `className`/`style` to position the SVG. Defaults to * absolutely-filling the parent container, which is what both * consumers want. */ className?: string; style?: React.CSSProperties; minVisibility?: number; } export declare function PoseOverlay({ landmarks, width, height, className, style, minVisibility }: PoseOverlayProps): import("react/jsx-runtime").JSX.Element;