1 | import { BoxProps } from "../Box";
|
2 | import * as React from "react";
|
3 | import { Omit } from "../common-types";
|
4 |
|
5 | interface IHeading {
|
6 | /**
|
7 | * The size of the Heading.
|
8 | */
|
9 | size?: "2xl" | "xl" | "lg" | "md" | "sm" | "xs";
|
10 | }
|
11 |
|
12 | export type HeadingProps = IHeading & Omit<BoxProps, "size">;
|
13 |
|
14 | declare const Heading: React.FC<HeadingProps>;
|
15 |
|
16 | export default Heading;
|