///
import Embed from 'embed/index';
import { Editor as EditorClass } from 'embed/Editor';
import { JSONTemplate as JSONTemplateType, ToolsConfig as ToolsConfigInterface } from 'state/types/types';
export declare type Unlayer = typeof Embed;
export declare type UnlayerOptions = Parameters[0];
export declare type Editor = InstanceType;
export declare type ToolsConfig = ToolsConfigInterface;
export declare type JSONTemplate = JSONTemplateType;
export interface EditorRef {
editor: Editor | null;
}
declare global {
interface Window {
__unlayer_lastEditorId: number;
}
}