import type { PathExists } from './context.js';
import type { FrameworkDefinition } from './types.js';
export declare const usesFramework: ({ detect: { npmDependencies: frameworkNpmDependencies, excludedNpmDependencies: frameworkExcludedNpmDependencies, configFiles, }, }: FrameworkDefinition, { pathExists, npmDependencies }: {
    pathExists: PathExists;
    npmDependencies: string[];
}) => Promise<boolean>;
