/// interface TextProps { text: string; } declare const Text: (props: TextProps) => JSX.Element; export default Text;