import { DistributiveOmit, PolymorphicProps } from "../utils/modern-polymorphic.js"; import React from "react"; //#region src/Text/Text.d.ts type TextProps = PolymorphicProps; declare const _default: (props: DistributiveOmit & { size?: "large" | "medium" | "small"; weight?: "light" | "normal" | "medium" | "semibold"; whiteSpace?: "pre" | "normal" | "nowrap" | "pre-wrap" | "pre-line"; className?: string; }, "as"> & { as?: As | undefined; } & React.RefAttributes) => React.ReactNode; //#endregion export { TextProps, _default as default };