import type { ReactNode } from 'react'; export type StructuredBodyProps = { body?: string; className?: string; } & Record; export declare function StructuredBlock({ name, className, children, ...attributes }: { name: string; className?: string; children: ReactNode; } & Record): import("react").JSX.Element; export declare function InlineMarkdown({ text }: { text: string; }): import("react").JSX.Element; export declare function stripWrappingBold(value: string): string; export declare function splitFeature(item: string): { title?: string; text: string; };