import type { KinematicsData } from './utils'; /** * Parse a URDF XML document into the SDK's shared {@link KinematicsData} shape. * * @param urdf - The URDF document as an XML string. */ export declare const parseUrdf: (urdf: string) => KinematicsData;