/// <reference types="react" />
import { ContentFieldsBase } from './content-fields-base';
import { HtImageNode } from './hubtype-fields';
export declare class FlowImage extends ContentFieldsBase {
    src: string;
    code: string;
    static fromHubtypeCMS(component: HtImageNode, locale: string): FlowImage;
    toBotonic(id: string): JSX.Element;
}
