import MghReadImageNodeOptions from './mgh-read-image-node-options.js';
import MghReadImageNodeResult from './mgh-read-image-node-result.js';
/**
 * Read an image file format and convert it to the itk-wasm file format
 *
 * @param {string} serializedImage - Input image serialized in the file format
 * @param {MghReadImageNodeOptions} options - options object
 *
 * @returns {Promise<MghReadImageNodeResult>} - result object
 */
declare function mghReadImageNode(serializedImage: string, options?: MghReadImageNodeOptions): Promise<MghReadImageNodeResult>;
export default mghReadImageNode;
