import * as React from "react"; type TextProps = { text?: string; } & React.HTMLAttributes; type ElementProps = { ref?: any; } & React.HTMLAttributes;