import { KiotaLogEntry } from "../types"; /** * Migrates data from a lock file located in the specified directory. * * This function connects to the Kiota service and sends a request to migrate data from the lock file. * If the migration is successful, it returns an array of `KiotaLogEntry` objects. * If an error occurs during the migration, the error is thrown. * * @param {string} lockFileDirectory - The directory where the lock file is located. * @returns {Promise} A promise that resolves to an array of `KiotaLogEntry` objects if the migration is successful, or `undefined` if no data is migrated. * @throws {Error} If an error occurs during the migration process. */ export declare function migrateFromLockFile(lockFileDirectory: string): Promise;