import React from "react"; import { FontStyle } from "../../data/types"; import { PrimitiveBaseProps, PrimitiveWithSizing } from "../helpers/types"; interface Props extends React.HTMLAttributes, PrimitiveBaseProps, PrimitiveWithSizing { children: string; fontStyle: FontStyle; } export declare function Text(props: Props): JSX.Element; export {};