import type { ProjectDefinitionContainer } from '#src/definition/project-definition-container.js'; import type { DefinitionIssue } from '#src/schema/creator/definition-issue-types.js'; /** * Checks that all enabled plugins have their required plugin dependencies met. * * For each enabled plugin, resolves its metadata and checks `pluginDependencies`. * Required (non-optional) dependencies that are not enabled produce error-severity * issues (blocking save) with an auto-fix that enables the missing plugin. */ export declare function checkPluginDependencies(container: ProjectDefinitionContainer): DefinitionIssue[]; //# sourceMappingURL=plugin-dependency-checker.d.ts.map