import { HTMLProps } from 'react';
type HeadingVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
export interface HeadingProps extends HTMLProps {
variant: HeadingVariant;
as?: string;
}
export declare const Heading: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;
export {};