import React from "react"; import type { ExtendElementProps } from "../utils/extendElementProp"; export declare type TextProps

= ExtendElementProps>; export declare function Text

({ children, className, size, align, weight, fill, hero, muted, info, success, warning, danger, italic, bold, noSelect, grow, as, ...rest }: TextProps

): React.ReactElement<{ className: string; } & Omit, "bold" | "className" | "children" | "align" | "fill" | "grow" | "size" | "danger" | "info" | "success" | "warning" | "muted" | "italic" | "noSelect" | "weight" | "as" | "hero">, string | React.JSXElementConstructor>;