import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: subSegment** * A segment within a segment. Title in SubSegment should always be level 3 * * Children: [title? any*] */ declare function SubSegment({ className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { SubSegment };