import { JsonCompatible, Image } from 'itk-wasm';
interface JpegReadImageNodeResult {
    /** Whether the input could be read. If false, the output image is not valid. */
    couldRead: JsonCompatible;
    /** Output image */
    image: Image;
}
export default JpegReadImageNodeResult;
