import { Block } from '../../../protocols/blocks';
import { ToHtml } from '../../../../domain/use-cases/to-html';
export declare class ImageBlockToHtml implements ToHtml {
    private readonly _block;
    constructor(block: Block);
    convert(): Promise<string>;
    private get _rawSrc();
    private get _caption();
}
