import type { PURL_Type } from '../../utils/ecosystem.mts'; import type { RangeStyle } from '../../utils/semver.mts'; import type { Spinner } from '@socketsecurity/registry/lib/spinner'; export type FixConfig = { all: boolean; applyFixes: boolean; autopilot: boolean; coanaVersion: string | undefined; cwd: string; debug: boolean; disableExternalToolChecks: boolean; disableMajorUpdates: boolean; ecosystems: PURL_Type[]; exclude: string[]; ghsas: string[]; include: string[]; minimumReleaseAge: string; minSatisfying: boolean; orgSlug: string; outputFile: string; packageManagers: string[]; prCheck: boolean; prLimit: number; rangeStyle: RangeStyle; showAffectedDirectDependencies: boolean; silence: boolean; spinner: Spinner | undefined; unknownFlags: string[]; }; //# sourceMappingURL=types.d.mts.map