import React from 'react'; import { TextProps } from './types'; declare const Text: ({ variant, weight, size, children, color, ...props }: TextProps | any) => React.JSX.Element; export default Text;