import NiftiReadImageNodeOptions from './nifti-read-image-node-options.js';
import NiftiReadImageNodeResult from './nifti-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 {NiftiReadImageNodeOptions} options - options object
 *
 * @returns {Promise<NiftiReadImageNodeResult>} - result object
 */
declare function niftiReadImageNode(serializedImage: string, options?: NiftiReadImageNodeOptions): Promise<NiftiReadImageNodeResult>;
export default niftiReadImageNode;
