import type { IdMap } from './IdMap'; import type { PackageId } from './PackageId'; import type { VolumeId } from './VolumeId'; export type MountTarget = { packageId: PackageId; volumeId: VolumeId; subpath: string | null; readonly: boolean; idmap: Array; };