import { Extension } from '../domain/extension';
/**
 * Loads the extension from a file.
 *
 * @param file The full path to the file to load.
 * @param options Options, such as
 */
export declare function loadExtensionFromFile(file: string, _options?: {}): Extension;
