UNPKG

@making-sense/antlr-editor

Version:
11 lines (10 loc) 349 B
/// <reference types="react" /> import { type CursorType } from "./Editor"; type EditorFooterProps = { cursor: CursorType; FooterComponent?: React.FC<{ cursor: CursorType; }>; }; declare const EditorFooter: ({ cursor, FooterComponent }: EditorFooterProps) => import("react/jsx-runtime").JSX.Element; export default EditorFooter;