import React from 'react';
import { TransformProps } from '../lib/extract/types';
import Shape from './Shape';
import './TSpan';
export default class Text extends Shape<{}> {
    static displayName: string;
    setNativeProps: (props: Object & {
        matrix?: number[];
        style?: [] | {};
    } & TransformProps) => void;
    render(): React.JSX.Element;
}
//# sourceMappingURL=Text.d.ts.map