/// /** * The after plugin. * * @return {Object} */ declare function AfterPlugin(): { onBeforeInput: (event: any, change: any, editor: any) => void; onBlur: (event: any, change: any, editor: any) => void; onClick: (event: any, change: any, editor: any) => any; onCopy: (event: any, change: any, editor: any) => void; onCut: (event: any, change: any, editor: any) => void; onDragEnd: (event: any, change: any, editor: any) => void; onDragOver: (event: any, change: any, editor: any) => void; onDragStart: (event: any, change: any, editor: any) => void; onDrop: (event: any, change: any, editor: any) => void; onInput: (event: any, change: any, editor: any) => void; onKeyDown: (event: any, change: any, editor: any) => any; onPaste: (event: any, change: any, editor: any) => void; onSelect: (event: any, change: any, editor: any) => void; renderEditor: (props: any, editor: any) => JSX.Element; renderNode: (props: any) => JSX.Element | undefined; renderPlaceholder: (props: any) => JSX.Element | undefined; }; /** * Export. * * @type {Object} */ export default AfterPlugin;