import * as nmfl from 'no-more-for-loops'; export interface Drawable { draw(): void; } /** * (To be filled) */ export declare class DrawableArray extends nmfl.LoopableArray implements Drawable { private static drawFunction; /** * Draws all child elements. */ draw(): void; }