import type { Tool } from '@wrongstack/core/types'; export interface OutdatedInput { cwd?: string | undefined; } export interface OutdatedPackage { name: string; current: string; latest: string; wanted: string; type: string; location: string; } export interface OutdatedOutput { exit_code: number; packages: OutdatedPackage[]; total: number; output: string; truncated: boolean; } export type OutdatedContext = Parameters['execute']>[1]; export declare const outdatedTool: Tool; //# sourceMappingURL=outdated.d.ts.map