import { TransformList } from "itk-wasm"; import ReadTransformOptions from "./read-transform-options.js"; /** * Read a transform file format and convert it to the ITK-Wasm file format * * @param {string} serializedTransform - Path to input transform serialized in the file format * @param {ReadTransformOptions} options - options to set the transform parameters type * * @returns {Promise} - TransformList result */ declare function readTransformNode(serializedTransform: string, options?: ReadTransformOptions): Promise; export default readTransformNode;