import * as React from 'react'; import { StandardProps } from '../../common'; export declare type TextAlign = 'left' | 'right' | 'center' | 'justify'; export interface BodyTextProps extends StandardProps { /** * Determines the alignment. By default left aligned. * @default left */ align?: TextAlign; /** * The content representing the body text. */ children?: React.ReactNode; } /** * Represents the body text component for placing normal text. */ export declare const BodyText: React.SFC & { inner: { readonly StyledBodyText: any; }; };