import { FC, PropsWithChildren } from 'react'; type Props = PropsWithChildren & { className?: string; as?: keyof JSX.IntrinsicElements; }; export declare const Heading3: FC; export {};