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