import type { ExecutorContext } from 'nx/src/config/misc-interfaces'; import type { BaseNormalizedExecutorContext } from './types.js'; export type NormalizedExecutorContext = BaseNormalizedExecutorContext & { projectName: string; }; export declare function normalizeContext(context: ExecutorContext): NormalizedExecutorContext;