import { ISize } from './size';
import { ICoordinates } from './coordinates';
export interface IGeometry extends ICoordinates, ISize {
}
