import { Container } from 'pixi.js'; import { LayoutView, LayoutViewOptions } from '../LayoutView'; export type ViewOptions = Omit; type BaseViewOptions = ViewOptions & { ClassType: new (...args: any[]) => Container; }; export declare abstract class BaseView extends LayoutView { constructor(opts: BaseViewOptions); } export {};