import { default as React } from 'react';

export interface DescriptionTextProps {
    id?: string;
    value: string;
    align?: "left" | "center" | "right" | "justify" | "inherit";
    noWrap?: boolean;
    preWrap?: boolean;
    paragraph?: boolean;
    gutterBottom?: boolean;
    variant?: "inherit" | "button" | "overline" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "subtitle1" | "subtitle2" | "body1" | "body2";
    label?: string;
}
export declare const DescriptionText: React.FC<DescriptionTextProps>;
