import { FileReader, ImageDocument } from '@llamaindex/core/schema'; /** * Reads the content of an image file into a Document object (which stores the image file as a Blob). */ declare class ImageReader extends FileReader { /** * Public method for this reader. * Required by BaseReader interface. * @param fileContent - The content of the file. * @returns `Promise` A Promise object, eventually yielding zero or one ImageDocument of the specified file. */ loadDataAsContent(fileContent: Uint8Array): Promise; } export { ImageReader };