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