import GiplReadImageNodeOptions from './gipl-read-image-node-options.js';
import GiplReadImageNodeResult from './gipl-read-image-node-result.js';
/**
 * Read an image file format and convert it to the itk-wasm file format
 *
 * @param {string} serializedImage - Input image serialized in the file format
 * @param {GiplReadImageNodeOptions} options - options object
 *
 * @returns {Promise<GiplReadImageNodeResult>} - result object
 */
declare function giplReadImageNode(serializedImage: string, options?: GiplReadImageNodeOptions): Promise<GiplReadImageNodeResult>;
export default giplReadImageNode;
