import { Action } from '@ngrx/store'; import { DxWindowSettings } from '../windows/window-config'; export declare class OpenComponentInWindow implements Action { componentId: string; data: D; tracer: string; config: Partial; stack?: string[]; static TYPE: string; readonly type: string; constructor(componentId: string, data: D, tracer: string, config?: Partial, stack?: string[]); } export declare class OpenComponentInWindowWithDocumentId implements Action { componentId: string; documentId: string; collectionPath: string; tracer: string; config: Partial; stack?: string[]; static TYPE: string; readonly type: string; constructor(componentId: string, documentId: string, collectionPath: string, tracer: string, config?: Partial, stack?: string[]); }