UNPKG

@alauda/doom

Version:

Doctor Doom making docs.

10 lines (9 loc) 376 B
import BananaSlug from '@rspress/shared/github-slugger'; import { type ReactNode } from 'react'; export interface HeadingTitleProps { slug?: string; slugger?: BananaSlug; level: 1 | 2 | 3 | 4 | 5 | 6; children: ReactNode; } export declare const HeadingTitle: ({ slug, slugger, level, children, }: HeadingTitleProps) => import("react/jsx-runtime").JSX.Element;