export type NumberedSectionHeaderProps = Readonly<{ index: string; /** Same contract as SectionHeader's title: plain text or phrasing content. */ title: React.ReactNode; /** * Plain text, or a node when the subtitle embeds inline controls (e.g. an `InlineButton`). * Phrasing content only — it renders inside a `
`, so block elements would be re-parented. */ subtitle?: React.ReactNode; className?: string; }>; export declare const NumberedSectionHeader: ({ index, title, subtitle, className, }: NumberedSectionHeaderProps) => import("react").JSX.Element; //# sourceMappingURL=NumberedSectionHeader.d.ts.map