UNPKG

alinea

Version:
8 lines (7 loc) 404 B
import { type PropsWithChildren } from 'react'; import type { EntryEditor } from '../atoms/EntryEditorAtoms.js'; export declare function useEntryEditor(): EntryEditor | undefined; export interface EntryEditorProviderProps { editor: EntryEditor; } export declare function EntryEditorProvider({ children, editor }: PropsWithChildren<EntryEditorProviderProps>): import("react/jsx-runtime").JSX.Element;