import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
import { TextProps } from "./Text";
export interface HeadingProps extends StyleProps, TextProps, IdProps {
    topSpacing?: boolean;
    bottomSpacing?: boolean;
    dense?: boolean;
    className?: string;
}
export declare const Heading: ({ id, children, style, color, size, centered, topSpacing, bottomSpacing, dense, className }: HeadingProps) => import("react/jsx-runtime").JSX.Element;
