import { SvelteComponentTyped } from "svelte"; import type { HistoryState } from "@lexical/history"; declare const __propDef: { props: { externalHistoryState?: HistoryState | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type LexicalHistoryPluginProps = typeof __propDef.props; export declare type LexicalHistoryPluginEvents = typeof __propDef.events; export declare type LexicalHistoryPluginSlots = typeof __propDef.slots; export default class LexicalHistoryPlugin extends SvelteComponentTyped { } export {};