import type { ClassValue as ClassName } from 'clsx'; import React from 'react'; import { type HeadingTags, type TypographyProps } from '../../styles/typography'; import type { TestIdProp } from '../../types'; import { type AdditionalStyleProps } from '../Text/Text'; type ElementAttributes = React.ComponentPropsWithoutRef<'h1'>; export interface HeadingProps extends Omit, TypographyProps, AdditionalStyleProps, TestIdProp { as?: HeadingTags; className?: ClassName; } /** * Heading renders an with default font size and weight */ export declare const Heading: ({ as: Tag, align, breakWord, children, className, color, colour, noWrap, size, transform, testId, weight, wrap, display, m, mb, ml, mr, mt, mx, my, margin, marginBottom, marginLeft, marginRight, marginTop, marginX, marginY, p, pb, pl, pr, pt, px, py, padding, paddingBottom, paddingLeft, paddingRight, paddingTop, paddingX, paddingY, ...props }: HeadingProps) => React.JSX.Element; export {}; //# sourceMappingURL=Heading.d.ts.map