interface HtmlOnChangePluginProps { onChange?: (value: string) => void; onBlur?: (value: string) => void; } /** * Emits v1-compatible HTML on every change and on blur. */ export declare const HtmlOnChangePlugin: (props: HtmlOnChangePluginProps) => null; export {};