import { type HeadingProps as SpectrumHeadingProps } from '@adobe/react-spectrum'; import type { DOMRefValue } from '@react-types/shared'; import { type ColorValue } from '../theme/colorUtils'; export type HeadingProps = SpectrumHeadingProps & { color?: ColorValue; }; /** * A Heading component that re-exports the Spectrum Heading component. * It overrides ColorValues to accept CSS color strings and custom * variable names from our color paletee and semantic colors. * * @param props The props for the Heading component * @returns The Heading component * */ export declare const Heading: import("react").ForwardRefExoticComponent>>; export default Heading; //# sourceMappingURL=Heading.d.ts.map