import * as react_jsx_runtime from 'react/jsx-runtime';
import React__default from 'react';

type TextProps = {
    text: string;
    styles?: React__default.CSSProperties | undefined;
    weight?: "bold" | "medium";
    size?: "sm" | "md" | "xs";
};
declare const Text: (props: TextProps) => react_jsx_runtime.JSX.Element;

export { Text as default };
