import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' export interface TextProps extends BoxProps {} export let Text = forwardRef(function Text( props: TextProps, ref, ) { return }) export default Text