import z from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ output: z.ZodDefault; }, "strip", z.ZodTypeAny, { output: string; }, { output?: string | undefined; }>; export declare class ExportNodes extends BaseCommand> { run(): Promise; private writeNodesJSON; } export {};