import type { PackageFile } from '../types'; /** * Check if a file is a pantry.lock file */ export declare function isPantryLockFile(filePath: string): boolean; /** * Parse a pantry.lock file and extract dependencies */ export declare function parsePantryLockFile(filePath: string, content: string): Promise; /** * Interface for pantry.lock file structure */ export declare interface PantryLock { version: string packages: Record } /** * Interface for a single pantry package entry */ export declare interface PantryPackage { name: string version: string resolved: string }