import React, { type PropsWithChildren } from "react"; import { BaseSelection } from "slate"; export type HyperLinkCreationData = { inputPosition: { top: number; left: number; } | null; selection: BaseSelection; isWatchMode: boolean; }; export declare const HyperLinkContext: any; export declare function useHyperLinkContext(): unknown; export declare const HyperLinkContextProvider: ({ children, }: PropsWithChildren<{}>) => React.JSX.Element;