import * as react_jsx_runtime from 'react/jsx-runtime';
import React__default from 'react';
import { VariantProps as VariantPropsInternal } from './variants.js';

declare const text: (props?: ({
    as?: "small" | "sub" | "sup" | "abbr" | "b" | "blockquote" | "code" | "del" | "em" | "i" | "kbd" | "mark" | "p" | "pre" | "q" | "span" | "strong" | undefined;
    fontWeight?: "bold" | "normal" | "medium" | "semibold" | undefined;
} & {
    className?: string;
}) | undefined) => string;
type TextProps = VariantPropsInternal<typeof text> & {
    title?: string;
    className?: string;
} & React__default.HTMLAttributes<any>;
declare function Text({ as, fontWeight, title, children, className, ...props }: React__default.PropsWithChildren<TextProps>): react_jsx_runtime.JSX.Element;
declare namespace Text {
    var displayName: string;
}

export { Text, type TextProps };
