import { Command } from 'commander'; import { CLIOptions } from './options'; export declare function resetActionHandler(): void; export declare const resetCommand: Command; export declare function fromActionHandler(xmindFilePath: string, outputFilePath: string | undefined): Promise; export declare const fromCommand: Command; export declare function mainActionHandler(files: string[], options: CLIOptions, command: Command): Promise; export declare const mainCommand: Command;