#!/usr/bin/env node /** * Efficient processor for large files using streaming */ declare function processLargeConfig(inputPath: string, outputPath: string): Promise; /** * Check file size and decide strategy */ declare function migrateConfig(configPath: string, options?: { dryRun?: boolean; force?: boolean; }): Promise; export { migrateConfig, processLargeConfig }; //# sourceMappingURL=migrate-config-streaming.d.ts.map