import React, { ReactNode } from 'react'; import { FontSize } from '@react-senior/foundation'; interface TextProps { size?: keyof typeof FontSize; children: ReactNode; } declare const Text: React.FC; export default Text;