import type { Command } from '../commands/index.js';
export type CommandArgs = {
    source: string;
    file: string;
    exclude?: string;
    npm?: boolean;
};
export declare const graph: Command<CommandArgs>;
