/// <reference types="node" />
import { RectangleSize } from './RectangleSize';
import { Location } from './Location';
export type Image = {
    image: Buffer | URL | string;
    name?: string;
    dom?: string;
    locationInViewport?: Location;
    locationInView?: Location;
    fullViewSize?: RectangleSize;
};
