import { HeadingRootSlotProps } from './heading.types'; /** * Props for the Heading component. * * @property {React.Ref} [ref] - Ref to the underlying heading element. * @property {string | null | undefined} [slot] - Slot attribute for custom element slotting. */ export type HeadingProps = HeadingRootSlotProps & { /** * Ref to the underlying heading element. */ ref?: React.Ref; /** * Slot attribute for custom element slotting. */ slot?: string | null | undefined; }; /** * # Heading * * renders a heading * * @see {@link https://nimbus-documentation.vercel.app/components/typography/heading} */ export declare const Heading: { ({ ref: forwardedRef, ...props }: HeadingProps): import("react/jsx-runtime").JSX.Element; displayName: string; };