import * as react from 'react'; import { ComponentProps } from 'react'; import { CSS } from './lib/stitches.config.js'; import { T as Text } from './Text-b4dbb448.js'; import { VariantProps } from '@stitches/react'; declare const DEFAULT_TAG = "h1"; declare type HeadingSizeVariants = '1' | '2' | '3' | '4'; declare type HeadingVariants = { size?: HeadingSizeVariants; } & Omit, 'size'>; declare type HeadingProps = ComponentProps & HeadingVariants & { css?: CSS; as?: any; }; declare const Heading: react.ForwardRefExoticComponent & react.RefAttributes>; export { Heading as H };