import BaseCommand from '../../BaseCommand.mjs'; declare class ExportTextCommand extends BaseCommand { static paths: string[][]; requireFavaLib: boolean; pathOption: string | undefined; passwordSource: string | undefined; static usage: import("clipanion").Usage; exec(): Promise<{ success: boolean; }>; } export default ExportTextCommand;