import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: segment** * Each article contains a number of segments. Each segment optionally starts with a title, followed by either a list of subSegments, or just some other components. * The "title" in Segment should always be level 2 * * Attributes: * - subtype (optional) As of SPACE, lots of different types of segments are added. Most of these have little visual impact, but they can have semantic relevance e.g. in voice assistant contexts, etc. Examples: * -- generic * -- description * -- process * -- interaction-location * -- hardware-location * * Children: [title? any*] */ declare function Segment({ className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { Segment };