import { ppqn } from "@opendaw/lib-dsp"; import { TrackBox } from "@opendaw/studio-boxes"; import { AnyRegionBox } from "../unions"; export declare namespace TransferRegions { /** * Copies a region and its dependencies to a target track, works across BoxGraphs. * Preserved resources already present in the target graph are shared, not duplicated. * @returns the newly created region box in the target graph */ const transfer: (region: AnyRegionBox, targetTrack: TrackBox, insertPosition: ppqn, deleteSource?: boolean) => AnyRegionBox; } //# sourceMappingURL=TransferRegions.d.ts.map