import { TransformList } from 'itk-wasm'; import WasmZstdWriteTransformOptions from './wasm-zstd-write-transform-options.js'; import WasmZstdWriteTransformResult from './wasm-zstd-write-transform-result.js'; /** * Write an ITK-Wasm transform file format converted to a transform file format * * @param {TransformList} transform - Input transform * @param {string} serializedTransform - Output transform serialized in the file format. * @param {WasmZstdWriteTransformOptions} options - options object * * @returns {Promise} - result object */ declare function wasmZstdWriteTransform(transform: TransformList, serializedTransform: string, options?: WasmZstdWriteTransformOptions): Promise; export default wasmZstdWriteTransform;