import React from "react";
import { Constructor, NativeMethods, TextProps } from "react-native";
export interface _TextProps extends TextProps {
    id?: string;
    className?: string;
}
declare class TextComponent extends React.Component<_TextProps> {
}
declare const _Text: Constructor<NativeMethods> & typeof TextComponent;
export default _Text;
