import { Editor } from 'slate'; import { NodeType } from '@artibox/slate-common'; export interface InstagramController { /** * Insert the instagram block to editor. */ insert(editor: Editor, embedCode: string): Editor; } export declare type CreateInstagramControllerConfig = NodeType; export declare function createInstagramController(config: CreateInstagramControllerConfig): InstagramController;