/** * Entry point for all image processing features. */ export declare const ScanbotImageProcessor: { /** * Reads image data from the given file uri and returns it as a Base 64 encoded string. * @param {string} imageFileUri - File uri of the image to be read. * @returns {Promise} - The Base 64 encoded representation of the image. */ readImageData(imageFileUri: string): Promise; };