import { FC, HTMLAttributes } from 'react'; type Props = HTMLAttributes & { as?: keyof JSX.IntrinsicElements; noSpacing?: boolean; }; export declare const Heading2: FC; export {};