import { Image } from 'itk-wasm'; import GeAdwWriteImageNodeOptions from './ge-adw-write-image-node-options.js'; import GeAdwWriteImageNodeResult from './ge-adw-write-image-node-result.js'; /** * Write an itk-wasm file format converted to an image file format * * @param {Image} image - Input image * @param {string} serializedImage - Output image serialized in the file format. * @param {GeAdwWriteImageNodeOptions} options - options object * * @returns {Promise} - result object */ declare function geAdwWriteImageNode(image: Image, serializedImage: string, options?: GeAdwWriteImageNodeOptions): Promise; export default geAdwWriteImageNode;