import * as React from 'react'; export interface TextProps { content?: 'string'; style?: 'object'; link?: 'string'; } declare const Text: React.FC; export default Text;