export interface LinuxNativeDependencies { machine: number; needed: string[]; interpreter?: string; } /** ELF64 little-endian only. No loader or code from the inspected file is executed. */ export declare function inspectLinuxElf(file: string): Promise; /** Parse all entries; trust checks apply only to names used by the inspected dependency graph. */ export declare function parseLinuxLoaderCache(output: string, machine: number): Map; /** Preserve loader search order, but never permit a non-system library to satisfy it. */ export declare function parseMuslSearchPath(content: string): string[]; /** Limited to standard distro library roots; custom loader caches and environment are unsupported. */ export declare function assertLinuxSystemDependencies(file: string): Promise; //# sourceMappingURL=service-migration-native-linux.d.ts.map