import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: segment** * Each article contains a number of segments. Each segment could have the subtype 'faq' which makes it render as a FAQSegment. A segment starts with a title, followed by either a list of subSegments, or just some other components. * The "title" in FAQSegment should always be level 4 * * Children: [title? any*] */ type FAQSegmentProps = PropsWithChildrenAndClassName<{ as: any; }>; declare function FAQSegment({ className, ...props }: FAQSegmentProps): import("react/jsx-runtime").JSX.Element; export { FAQSegment };