import React from "react"; import { type VibeComponentProps } from "../../types"; import { type EditableTypographyImplementationProps } from "../EditableTypography/EditableTypography"; import { type TextType, type TextWeight } from "@vibe/typography"; export interface EditableTextProps extends VibeComponentProps, EditableTypographyImplementationProps { /** * The text style variant. */ type?: TextType; /** * The font weight of the text. */ weight?: TextWeight; /** * If true, enables editing multiple lines of text. */ multiline?: boolean; } declare const EditableText: React.ForwardRefExoticComponent>; export default EditableText;