import { ReactNode } from "react"; import { TextProps } from "./Text"; export declare type HeadingProps = { children?: ReactNode; as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; } & TextProps; export declare const Heading: ({ as, ...props }: HeadingProps) => import("@emotion/react/jsx-runtime").JSX.Element;