import WasmZtdReadMeshOptions from "./wasm-ztd-read-mesh-options.js"; import WasmZtdReadMeshNodeResult from "./wasm-ztd-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 {WasmZtdReadMeshOptions} options - options object * * @returns {Promise} - result object */ declare function wasmZtdReadMeshNode(serializedMesh: string, options?: WasmZtdReadMeshOptions): Promise; export default wasmZtdReadMeshNode;