import * as React from "react"; import { BasicTextProps } from "../textTypes"; export interface MonospaceTextProps extends BasicTextProps { /** * The color of the text */ color: React.CSSProperties["color"]; } declare const MonospaceText: { (props: MonospaceTextProps): JSX.Element; defaultProps: { color: string; tag: string; size: string; weight: string; align: string; wrap: string; }; }; export default MonospaceText;