import * as React from "react"; export interface TextProps { color?: string; height: number; id: string; className: string; padding: number; width: number; verticalAlign: string; fontFamily: string; fontSize: number; fontStyle: string; fontWeight: string; lineHeight: number; overflow: string; rotation: number; textAlign: "start" | "end" | "left" | "center" | "right"; textContent: string; textOverflow: string; whiteSpace: string; fill: string; stroke?: string; strokeWidth?: number; } export declare class Text extends React.Component { constructor(props: TextProps); render(): JSX.Element; }