import { AtomName } from '../../types/atom';
import type { BaseOptions } from '../../types';
import { BaseAtom } from '../base';
import type { LLMMessage } from '../../types/llm';
import type { ImageReaderCtx } from './interface';
export declare class ImageReader extends BaseAtom<ImageReaderCtx, BaseOptions> {
    name: AtomName;
    isLLMAtom: boolean;
    constructor(context: ImageReaderCtx, option: BaseOptions);
    getLLMMessages(query?: string): LLMMessage[];
    parseLLMContent(resJson: any): ImageReaderCtx;
}
export declare const registerImageReaderAtom: () => void;
