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