import { type LexicalEditor } from 'lexical'; import type { AutoLinkPluginOptions } from '../types'; /** * Register automatic link detection and creation. * Detects URLs and email addresses as you type and converts them to links. */ export declare function registerAutoLinkPlugin(editor: LexicalEditor, options?: AutoLinkPluginOptions): Promise<() => void>;