import type { UnlayerEmbed, UnlayerEditor, UnlayerOptions as UnlayerOptionsType, JSONTemplate as JSONTemplateType, ToolsConfig as ToolsConfigInterface } from '@unlayer/types'; export declare type Unlayer = UnlayerEmbed; export declare type UnlayerOptions = UnlayerOptionsType; export declare type Editor = UnlayerEditor; export declare type ToolsConfig = ToolsConfigInterface; export declare type JSONTemplate = JSONTemplateType; export interface EditorRef { editor: Editor | null; } declare global { interface Window { __unlayer_lastEditorId: number; } }