handwritten-highlights
Version:
Beautiful & animated text highliter for your Next/React project. Enhance your text with colorful visuals and animations that resembles real writing.
11 lines (10 loc) • 409 B
TypeScript
import React from "react";
interface HighlightContextValue {
registerCallback: (callback: () => void) => () => void;
}
export declare const HighlightContext: React.Context<HighlightContextValue | null>;
interface HighlightProviderProps {
children: React.ReactNode;
}
export declare const HighlightProvider: ({ children }: HighlightProviderProps) => import("react/jsx-runtime").JSX.Element;
export {};