import { Coordinate } from './coordinate';
import { BoundingBox } from './bounding-box';
export interface Layer {
    center: Coordinate;
    boundingBox: BoundingBox;
    width?: number;
    height?: number;
    image: number[][];
    recognition?: string | number;
}
