import React from 'react'; import { HeadingStyleProps } from './styles'; type VariantType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; type AtomHeadingProps = React.HTMLAttributes & HeadingStyleProps & { variant?: VariantType; as?: VariantType; }; export interface AtomHeadingElement extends React.JSX.Element { } export declare const Heading: ({ variant, as, children, className, weight, ...rest }: AtomHeadingProps) => import("react/jsx-runtime").JSX.Element; export {};