import React from "react"; import { VibeComponent, VibeComponentProps } from "../../types"; import { HeadingType, HeadingWeight } from "../Heading/HeadingConstants"; import { EditableTypographyImplementationProps } from "../EditableTypography/EditableTypography"; export interface EditableHeadingProps extends VibeComponentProps, EditableTypographyImplementationProps { /** * Sets the Heading type * @type {HeadingType} * */ type?: HeadingType; /** Sets the Heading weight * @type {HeadingWeight} */ weight?: HeadingWeight; } declare const _default: ((VibeComponent, HTMLElement> & Partial<{ types: typeof HeadingType; weights: typeof HeadingWeight; }>) | (React.FC> & Partial<{ types: typeof HeadingType; weights: typeof HeadingWeight; }>)) & { types: typeof HeadingType; weights: typeof HeadingWeight; }; export default _default;