import * as React from 'react';
import { TypographyProps } from '@material-ui/core/Typography';
export interface ITextProps extends TypographyProps {
    text: string;
}
declare const Text: React.SFC<ITextProps>;
export default Text;
