import type { FieldNode } from '../../../../types/config'; import type { PackageScript } from '../../../../types/packageJsonPanel'; export declare const findPackageJsonPath: (cwd: string) => string | null; export declare const resolvePackageJsonState: (cwd: string) => { configPath: string | null; current: Record; fields: FieldNode[]; scripts: PackageScript[]; };