import { HeadingProps, PanelProps } from '@stoplight/mosaic'; import * as React from 'react'; export interface ISectionTitle { title: string; id?: string; size?: HeadingProps['size']; isCompact?: boolean; } export declare const SectionTitle: React.FC; export declare const SectionSubtitle: React.FC; declare type SubSectionPanelProps = { title: React.ReactNode; hasContent?: boolean; rightComponent?: React.ReactNode; }; export declare const SubSectionPanel: React.FC>; export {};