import React from "react"; //#region src/components/surface/TrackItem.d.ts /** * Props for a timeline track row bound to a track id. */ interface TrackItemProps extends React.HTMLAttributes { /** Id of the track row that this item should size and identify in the DOM. */ trackId: string; } declare const TrackItem: React.ForwardRefExoticComponent>; //#endregion export { TrackItem, TrackItemProps }; //# sourceMappingURL=TrackItem.d.mts.map