import { Command } from 'commander'; export interface TransformCommandOptions { outputZip?: string; inputZip?: string; scriptsZip?: string; legacyMode?: boolean; silent?: boolean; cwd?: string; dataGroup?: string; [key: string]: any; } export declare function registerTransformCommand(program: Command): void; export declare function handleTransform(options: TransformCommandOptions): Promise; //# sourceMappingURL=index.d.ts.map