import * as React from "react"; export interface BaseTextProps { text: string; } declare function BaseText(props: BaseTextProps): React.JSX.Element; export default BaseText;