/// import { Style } from 'twrnc/dist/esm/types'; import { TailwindFn } from 'twrnc'; declare type Props = { tw: TailwindFn; style?: Style; children: string; }; declare const H2: ({ tw, style, children }: Props) => JSX.Element; export default H2;