import SwcReadMeshNodeOptions from './swc-read-mesh-node-options.js'; import SwcReadMeshNodeResult from './swc-read-mesh-node-result.js'; /** * Read a mesh file format and convert it to the itk-wasm file format * * @param {string} serializedMesh - Input mesh serialized in the file format * @param {SwcReadMeshNodeOptions} options - options object * * @returns {Promise} - result object */ declare function swcReadMeshNode(serializedMesh: string, options?: SwcReadMeshNodeOptions): Promise; export default swcReadMeshNode;