/// <reference types="react" />
export interface TextProps {
    children?: string;
    x?: string | number;
    y?: string | number;
    className?: string;
}
declare function Text({ children, x, y, className }: TextProps): JSX.Element;
export default Text;
