import { IWindow } from './IWindow'; import { WindowProperties } from './WindowProperties'; export declare class WindowFactory { protected classType: { new (properties: WindowProperties): U; }; constructor(classType: { new (properties: WindowProperties): U; }); create(properties: WindowProperties): U; }