alinea
Version:
Headless git-based CMS
8 lines (7 loc) • 346 B
TypeScript
import type { PropsWithChildren } from 'react';
import type { EntryEditor } from '../../atoms/EntryEditorAtoms.js';
export interface EntryTitleProps {
editor: EntryEditor;
backLink?: string;
}
export declare function EntryTitle({ children, editor, backLink }: PropsWithChildren<EntryTitleProps>): import("react/jsx-runtime").JSX.Element;