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: ({ align, children, tag, wrap, weight, color, size, className, "data-cy": dataCy }: TextProps) => React.JSX.Element; export default Text;