import { AbstractEntity } from '../../../../abstractEntity'; export declare enum ImageFields { COLUMN_FIELDS = "fields", COLUMN_URL = "url" } export declare type ImageType = { [ImageFields.COLUMN_URL]: string; [ImageFields.COLUMN_FIELDS]?: { [key: string]: string; }; }; export declare class Image extends AbstractEntity { #private; constructor(imageInput: ImageType); get url(): string; get fields(): { [key: string]: string; } | undefined; toJSON(): ImageType; }