interface ConvertOptions { target?: string; global?: boolean; debug?: boolean; } /** * Main handler for the convert command */ export declare function convertCommandAction(sourceFormat: string, targetFormat: string, sourcePath: string, options: ConvertOptions): Promise; export {};