import { PropsWithChildren } from 'react'; export type TimelineFileDropProps = PropsWithChildren<{}>; /** * * const n: Node = { * tag: 'Urdf', * key: 'anymal/urdf/anymal.urdf', * jointValues, * }; * if (x !== null) n['position'] = [x, y, z]; * if (roll !== null) n['rotation'] = [roll, pitch, yaw]; * * return { * ts: l / 50, * etype: 'UPSERT', * data: { nodes: [n] }, * } as Frame; * **/ export declare const TimelineFileDrop: ({ children }: TimelineFileDropProps) => import("react/jsx-runtime").JSX.Element;