import React from "react"; import { type HeadingType, type HeadingWeight } from "@vibe/typography"; import { type VibeComponentProps } from "../../types"; import { type EditableTypographyImplementationProps } from "../EditableTypography/EditableTypography"; export interface EditableHeadingProps extends VibeComponentProps, EditableTypographyImplementationProps { /** * The type of the heading element. */ type?: HeadingType; /** * The font weight of the heading. */ weight?: HeadingWeight; } declare const EditableHeading: React.ForwardRefExoticComponent>; export default EditableHeading;