// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { PopupComponent } from "../../widgets/popupComponent"; import { ICellEditorComp, ICellEditorParams } from "../../interfaces/iCellEditor"; export declare class PopupEditorWrapper extends PopupComponent implements ICellEditorComp { private cellEditor; private params; private getGuiCalledOnChild; static DOM_KEY_POPUP_EDITOR_WRAPPER: string; constructor(cellEditor: ICellEditorComp); private onKeyDown; getGui(): HTMLElement; init(params: ICellEditorParams): void; afterGuiAttached(): void; getValue(): any; isCancelBeforeStart(): boolean; isCancelAfterEnd(): boolean; getPopupPosition(): string | undefined; focusIn(): void; focusOut(): void; }