import { Size } from '../utils'; import { Rectangle } from './'; export declare class Container extends Rectangle { items: any[]; constructor(pos: any, size: any, color: any); addItem(item: any): void; draw(offset?: Size): void; }