import type { Action, ExtensionAuto } from "../../../core/index.js"; export { blockquoteNodeName, blockquoteType } from "./const.js"; declare const bqAction = "quote"; export type BlockquoteOptions = { qouteKey?: string | null; }; export declare const Blockquote: ExtensionAuto; declare global { namespace WysiwygEditor { interface Actions { [bqAction]: Action; } } }