import { type ExecutorContext } from '@nx/devkit';
import { type PackageJson } from 'nx/src/utils/package-json';
import { type PruneLockfileOptions } from './schema';
export default function pruneLockfileExecutor(schema: PruneLockfileOptions, context: ExecutorContext): Promise<{
    success: boolean;
}>;
export declare function resolveCatalogReferences(packageJson: PackageJson): PackageJson;
