import React from "react"; import type { RenderAsElement } from "./Text.types"; declare const Text: React.ForwardRefExoticComponent<{ renderAs?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span" | "label" | undefined; className?: string | undefined; children: React.ReactNode; kind?: import("./Text.types").TextKind | undefined; color?: string | undefined; isBold?: boolean | undefined; isItalic?: boolean | undefined; isUnderlined?: boolean | undefined; isStrikethrough?: boolean | undefined; isEditable?: boolean | undefined; inputProps?: Omit, "value"> | undefined; inputRef?: React.RefObject | undefined; } & React.HTMLAttributes & React.HTMLAttributes & React.HTMLAttributes & React.HTMLAttributes & React.LabelHTMLAttributes & React.RefAttributes>; export { Text };