/******************************************************************************* * Copyright (c) 2025-2026 Maxprograms. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/org/documents/epl-v10.html * * Contributors: * Maxprograms - initial API and implementation *******************************************************************************/ import { HybridTM, ImportOptions, TranslationState } from '../index.js'; export type ImportType = 'xliff' | 'tmx' | 'sdltm'; export declare class ImportCommand { static usage(): void; static run(args: string[]): Promise; static importFile(tm: HybridTM, filePath: string, type: ImportType, options: ImportOptions): Promise; static resolveImportType(explicit: string | undefined, filePath: string): ImportType; static isTranslationState(value: string): value is TranslationState; private static buildImportOptions; }