import { BoxProps } from "../Box"; export type HeadingProps = { /** * Level of the Heading */ as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; level?: 1 | 2 | 3 | 4 | 5 | 6; } & Pick; export declare const Heading: ({ children, as, level, className, ...rest }: HeadingProps) => import("react/jsx-runtime").JSX.Element;