import TxtReadTransformNodeOptions from './txt-read-transform-node-options.js'; import TxtReadTransformNodeResult from './txt-read-transform-node-result.js'; /** * Read an transform file format and convert it to the ITK-Wasm transform file format * * @param {string} serializedTransform - Input transform serialized in the file format * @param {TxtReadTransformNodeOptions} options - options object * * @returns {Promise} - result object */ declare function txtReadTransformNode(serializedTransform: string, options?: TxtReadTransformNodeOptions): Promise; export default txtReadTransformNode;