UNPKG

205 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2export interface HeadingProps {
3 children: JSX.Element | string;
4 disableAnchor?: boolean;
5}
6export declare const Heading: FunctionComponent<HeadingProps>;