/** * @file Component Collection * @author Alexander Rose * @private */ import Component from './component'; import Collection from './collection'; declare class ComponentCollection extends Collection { addRepresentation(name: string, params: any): this; autoView(duration: number): this; } export default ComponentCollection;