import React from 'react'; interface SectionHeadingProps { children?: React.ReactNode; id: string; slotName: string; slotProps: Record; depth: number; href?: string; deprecated?: boolean; pagePerSection?: boolean; } declare const SectionHeading: React.FunctionComponent; export default SectionHeading;