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