import { type ReactNode } from "react"; export interface InsertionPointContextType { insertionPoint: ChildNode | null; } export interface InsertionPointProviderProps extends InsertionPointContextType { children: ReactNode; } export declare function InsertionPointProvider(props: InsertionPointProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useInsertionPoint(): ChildNode | null;