import WasmZstdReadTransformNodeOptions from './wasm-zstd-read-transform-node-options.js'; import WasmZstdReadTransformNodeResult from './wasm-zstd-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 {WasmZstdReadTransformNodeOptions} options - options object * * @returns {Promise} - result object */ declare function wasmZstdReadTransformNode(serializedTransform: string, options?: WasmZstdReadTransformNodeOptions): Promise; export default wasmZstdReadTransformNode;